-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·305 lines (305 loc) · 8.27 KB
/
package.json
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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
{
"name": "file-bunny",
"displayName": "File Bunny",
"publisher": "robole",
"author": {
"name": "Rob O'Leary"
},
"description": "Perform file actions quickly with keyboard-driven file selection. 🐰⌨️",
"icon": "img/logo.png",
"version": "2.4.0",
"engines": {
"vscode": "^1.84.0",
"node": ">=12"
},
"categories": [
"Other"
],
"galleryBanner": {
"color": "#ffcc67",
"theme": "light"
},
"keywords": [
"file",
"folder",
"directory",
"dir",
"files",
"file utils",
"file utility",
"file utilities",
"file operations",
"file selector",
"file manager",
"file explorer",
"explorer",
"file browser",
"browser",
"create new",
"new file",
"advanced new file",
"create new file",
"create file",
"create new folder",
"create folder",
"create directory",
"move",
"move file",
"move folder",
"copy",
"copy file",
"copy folder",
"copy dir",
"rename",
"rename file",
"rename folder",
"rename dir",
"duplicate",
"duplicate file",
"duplicate folder",
"duplicate dir",
"delete",
"delete file",
"delete folder",
"open",
"open file",
"open folder",
"quick open",
"copy file name",
"copy file path",
"emacs",
"helm"
],
"bugs": {
"url": "https://github.com/robole/vscode-file-bunny/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/robole/vscode-file-bunny"
},
"sponsor": {
"url": "https://ko-fi.com/roboleary"
},
"license": "",
"activationEvents": [
"onStartupFinished"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "filebunny.createFile",
"category": "File Bunny",
"title": "Create New File"
},
{
"command": "filebunny.moveActiveFile",
"category": "File Bunny",
"title": "Move Active File"
},
{
"command": "filebunny.duplicateActiveFile",
"category": "File Bunny",
"title": "Duplicate Active File"
},
{
"command": "filebunny.renameActiveFile",
"category": "File Bunny",
"title": "Rename Active File"
},
{
"command": "filebunny.deleteActiveFile",
"category": "File Bunny",
"title": "Delete Active File"
},
{
"command": "filebunny.duplicateFile",
"category": "File Bunny",
"title": "Duplicate File"
},
{
"command": "filebunny.moveFile",
"category": "File Bunny",
"title": "Move File"
},
{
"command": "filebunny.deleteFile",
"category": "File Bunny",
"title": "Delete File"
},
{
"command": "filebunny.openFolder",
"category": "File Bunny",
"title": "Open Folder"
},
{
"command": "filebunny.openWorkspaceFolderExternal",
"category": "File Bunny",
"title": "Open Workspace Folder in External Default App"
},
{
"command": "filebunny.goToTopActiveFile",
"category": "File Bunny",
"title": "Go to Top of Active File"
},
{
"command": "filebunny.goToBottomActiveFile",
"category": "File Bunny",
"title": "Go to Bottom of Active File"
},
{
"command": "filebunny.copyFileName",
"category": "File Bunny",
"title": "Copy File Name"
},
{
"command": "filebunny.copyRelativeFilePath",
"category": "File Bunny",
"title": "Copy Relative File Path"
},
{
"command": "filebunny.copyAbsoluteFilePath",
"category": "File Bunny",
"title": "Copy Absolute File Path"
},
{
"command": "filebunny.openFile",
"category": "File Bunny",
"title": "Open File"
},
{
"command": "filebunny.openActiveFileExternal",
"category": "File Bunny",
"title": "Open Active File in External Default App"
},
{
"command": "filebunny.openFileAbove",
"category": "File Bunny",
"title": "Open File Above"
},
{
"command": "filebunny.openFileBelow",
"category": "File Bunny",
"title": "Open File Below"
},
{
"command": "filebunny.openFileToRight",
"category": "File Bunny",
"title": "Open File To Right"
},
{
"command": "filebunny.openFileToLeft",
"category": "File Bunny",
"title": "Open File To Left"
},
{
"command": "filebunny.createFolder",
"category": "File Bunny",
"title": "Create New Folder"
},
{
"command": "filebunny.moveFolder",
"category": "File Bunny",
"title": "Move Folder"
},
{
"command": "filebunny.duplicateFolder",
"category": "File Bunny",
"title": "Duplicate Folder"
},
{
"command": "filebunny.deleteFolder",
"category": "File Bunny",
"title": "Delete Folder"
},
{
"command": "filebunny.openFileExternal",
"category": "File Bunny",
"title": "Open File in External Default App"
},
{
"command": "filebunny.openFolderExternal",
"category": "File Bunny",
"title": "Open Folder in External Default App"
},
{
"command": "filebunny.test",
"category": "File Bunny",
"title": "Test new functionality"
}
],
"keybindings": [
{
"key": "left",
"command": "filebunny.back",
"when": "inFileBunny"
},
{
"key": "right",
"command": "filebunny.next",
"when": "inFileBunny"
},
{
"key": "tab",
"command": "filebunny.next",
"when": "inFileBunny"
}
],
"configuration": {
"type": "object",
"title": "File Bunny",
"properties": {
"filebunny.excludes": {
"type": "array",
"items": {
"type": "string"
},
"default": [
"**/.git/**",
"**/node_modules/**"
],
"description": "Glob patterns for excluding files and folders from file lists. It is similar to `files.exclude`. Patterns must match on absolute paths (i.e. prefix with **, or use the full path). \n\nDots are treated as normal characters (dot:true option for glob-node). If you want to exclude all dot folders, use the pattern: '**/.*/**'."
},
"filebunny.startingLocationOpenFolder": {
"type": "string",
"default": "",
"description": "The initial location shown in the QuickPick when you run the command 'File Bunny: Open Folder'. If this field is empty or the path is invalid, it will default to the system home directory."
}
}
}
},
"scripts": {
"lint": "eslint src --ext=js",
"lint:fix": "npm run lint -- --fix",
"prettier": "prettier --check",
"prettier:fix": "npm run prettier -- --write",
"format": "npm run prettier:fix && npm run lint:fix",
"test": "node ./test/runTest.js",
"esbuild-base": "esbuild ./src/extension.js --bundle --outfile=dist/extension.js --external:vscode --format=cjs --platform=node",
"dev": "npm run esbuild-base -- --sourcemap --watch",
"vscode:prepublish": "npm run esbuild-base -- --minify",
"build": "vsce package"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^8.0.4",
"@types/node": "^12.11.7",
"@types/vscode": "^1.84.0",
"@vscode/test-electron": "^2.3.0",
"@vscode/vsce": "^2.22.0",
"chai": "^4.3.4",
"esbuild": "^0.19.9",
"eslint": "^7.19.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-node-roboleary": "^0.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-node": "^11.1.0",
"mocha": "^8.2.1",
"prettier": "^2.0.5",
"typescript": "^4.1.3"
},
"dependencies": {
"glob": "^7.1.6"
}
}