-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
187 lines (187 loc) · 5.76 KB
/
package.json
File metadata and controls
187 lines (187 loc) · 5.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
{
"name": "commander-v",
"displayName": "Commander V",
"publisher": "kerns",
"activationEvents": [
"onCommand:extension.commanderV"
],
"repository": {
"type": "git",
"url": "https://github.com/kerns/commander-v"
},
"description": "Improves AI pair programming workflows by making it easy to share the current state and structure of your code.",
"version": "2.4.7",
"keywords": [
"Commander V",
"AI",
"Machine Learning",
"ChatGPT",
"Claude AI",
"Productivity"
],
"icon": "src/commander_v_icon.png",
"engines": {
"vscode": "^1.77.0"
},
"categories": [
"Data Science",
"Machine Learning",
"Other"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "extension.commanderV",
"title": "Commander V"
},
{
"command": "extension.commanderVReusePreviousSelection",
"title": "Reuse last Commander V Selection"
}
],
"menus": {
"explorer/context": [
{
"command": "extension.commanderV",
"when": "resource"
},
{
"command": "extension.commanderVReusePreviousSelection",
"when": "resource && commanderV.hasPreviousSelection"
}
],
"editor/title/context": [
{
"command": "extension.commanderV",
"when": "resourceScheme == file"
}
]
},
"keybindings": [
{
"command": "extension.commanderV",
"key": "shift+ctrl+v",
"mac": "shift+cmd+v"
},
{
"command": "extension.commanderVReusePreviousSelection",
"key": "shift+ctrl+r",
"mac": "shift+cmd+r"
}
],
"configuration": {
"title": "Commander V",
"properties": {
"commanderV.includeProjectTree": {
"order": 1,
"type": "boolean",
"default": true,
"description": "Include an ASCII tree representing your project's directory structure in the payload sent to your clipboard"
},
"commanderV.projectTreeDepth": {
"order": 2,
"type": "number",
"default": 3,
"description": "The maximum depth of directories to include in the generated ASCII tree. Not applied when \"Prune Project Tree\" is enabled."
},
"commanderV.pruneProjectTree": {
"order": 4,
"type": "boolean",
"default": true,
"description": "Limit the tree to only include files that have been selected"
},
"commanderV.orderFilesBy": {
"order": 5,
"type": "string",
"default": "treeOrder",
"enum": [
"treeOrder",
"selectionOrder"
],
"enumDescriptions": [
"by position in the tree...",
"by order of selection..."
],
"description": "Specify how to sort files when concatenating their content"
},
"commanderV.ignoreFile": {
"order": 6,
"type": "string",
"default": ".gitignore",
"title": "Ignore File",
"description": "Path to your ignore file, containing patterns to exclude from the generated ASCII tree. Not applied when \"Prune Project Tree\" is enabled.",
"examples": [
".com-v.ignore"
]
},
"commanderV.commentAtFileBegin": {
"order": 7,
"type": "string",
"default": "/* --- Begin $file --- */",
"description": "Opening comment shown at the beginning of every file. Use $file as a placeholder for the file path"
},
"commanderV.commentAtFileEnd": {
"order": 8,
"type": "string",
"default": "/* --- End $file --- */",
"description": "Closing comment shown at the end of every file. Use $file as a placeholder for the file path"
},
"commanderV.includeSeparator": {
"order": 9,
"type": "boolean",
"default": false,
"description": "Insert a visual separator between concatenated files to improve readability"
},
"commanderV.separatorCharacter": {
"order": 10,
"type": "string",
"default": "-",
"maxLength": 3,
"description": "The character to use for the separator between file contents (max 3 characters)",
"visibleWhen": "commanderV.includeSeparator == true"
},
"commanderV.separatorLength": {
"order": 11,
"type": "number",
"default": 16,
"minimum": 1,
"maximum": 120,
"description": "The length of the separator between file contents (1-120)",
"visibleWhen": "commanderV.includeSeparator == true"
},
"commanderV.wrapInCodeBlock": {
"order": 12,
"type": "boolean",
"default": false,
"description": "Wrap the concatenated file contents in a code block (```)"
},
"commanderV.playSoundOnComplete": {
"order": 13,
"type": "boolean",
"default": true,
"description": "Play a sound when operations are successful and output is delivered to you clipboard"
},
"commanderV.readFromEditor": {
"order": 14,
"type": "boolean",
"default": false,
"description": "Read unsaved file contents directly the editor if the file is open, otherwise read from the last saved file"
}
}
}
},
"scripts": {
"prepublishOnly": "vsce package",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@types/node": "^18.0.0",
"@vscode/test-electron": "^2.3.0"
},
"dependencies": {
"@agarimo/archy": "^1.0.0",
"directory-tree": "^3.5.0",
"play-sound": "^1.1.5"
}
}