-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
325 lines (325 loc) · 7.98 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
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
{
"name": "vscode-swissknife",
"displayName": "Swissknife",
"description": "The developers swissknife. Do conversions and generations right out of vs code. Extendable with user scripts",
"version": "1.8.1",
"author": "luisfontes19",
"publisher": "luisfontes19",
"license": "MIT",
"engines": {
"vscode": "^1.60.0"
},
"repository": {
"url": "https://github.com/luisfontes19/vscode-swissknife"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
"menus": {
"touchBar": [
{
"command": "swissknife.show",
"group": "editing"
}
],
"explorer/context": [
{
"group": "2_workspace",
"submenu": "swissknife.decorators"
}
],
"swissknife.decorators": [
{
"command": "swissknife.decorators.check",
"group": "2_workspace"
},
{
"command": "swissknife.decorators.reject",
"group": "2_workspace"
},
{
"command": "swissknife.decorators.custom",
"group": "2_workspace"
},
{
"command": "swissknife.decorators.eyes",
"group": "2_workspace"
}
],
"editor/context": [
{
"command": "swissknife.copyPathWithLine",
"when": "editorTextFocus && !editorHasSelection && !editorHasMultipleSelections",
"group": "9_cutcopypaste"
}
],
"comments/commentThread/context": [
{
"command": "swissknife.createNote",
"group": "inline",
"when": "commentController == swissknife-notes"
}
],
"comments/comment/context": [
{
"command": "swissknife.saveNote",
"group": "inline",
"when": "commentController == swissknife-notes"
}
],
"comments/commentThread/title": [
{
"command": "swissknife.editNote",
"group": "group@1",
"when": "commentController == swissknife-notes && !commentThreadIsEmpty"
},
{
"command": "swissknife.deleteNote",
"group": "group@2",
"when": "commentController == swissknife-notes && !commentThreadIsEmpty"
}
],
"commandPalette": [
{
"command": "swissknife.editNote",
"when": "false"
},
{
"command": "swissknife.createNote",
"when": "false"
},
{
"command": "swissknife.deleteNote",
"when": "false"
},
{
"command": "swissknife.saveNote",
"when": "false"
}
]
},
"submenus": [
{
"id": "swissknife.decorators",
"label": "Swissknife: Decorators (toggle)"
}
],
"commands": [
{
"command": "swissknife.show",
"title": "Open Swissknife command pallet",
"icon": "data/icon.png"
},
{
"command": "swissknife.reload",
"title": "Reload Swissknife scripts"
},
{
"command": "swissknife.openScripts",
"title": "Swissknife: Open Swissknife user scripts folder"
},
{
"command": "swissknife.copyPathWithLine",
"title": "Swissknife: Copy file path with line"
},
{
"command": "swissknife.decorators.check",
"title": "(✓) Check"
},
{
"command": "swissknife.decorators.reject",
"title": "(✗) Reject"
},
{
"command": "swissknife.decorators.eyes",
"title": "👀 Review"
},
{
"command": "swissknife.decorators.custom",
"title": "(?) Custom"
},
{
"command": "swissknife.createNote",
"title": "Create Note"
},
{
"command": "swissknife.editNote",
"title": "Edit Note"
},
{
"command": "swissknife.deleteNote",
"title": "Delete Note"
},
{
"command": "swissknife.saveNote",
"title": "Save Note"
},
{
"command": "swissknife.enableNotes",
"title": "Swissknife: Enable notes for Workspace"
},
{
"command": "swissknife.disableNotes",
"title": "Swissknife: Disable notes for Workspace"
},
{
"command": "swissknife.generateNotesDoc",
"title": "Swissknife: Generate notes report"
}
],
"keybindings": [
{
"command": "swissknife.show",
"key": "Ctrl+Shift+9",
"mac": "Cmd+Shift+9",
"when": "editorFocus"
}
],
"views": {
"explorer": [
{
"id": "swissknife-decorators-tree",
"name": "Swissknife: Decorated Files"
}
]
},
"configuration": {
"title": "Swissknife",
"properties": {
"swissknife.notesEnabled": {
"type": "boolean",
"description": "Enable the feature to allow to add notes per line in files.",
"default": false
}
}
}
},
"galleryBanner": {
"color": "#1e1e1e",
"theme": "dark"
},
"scripts": {
"vscode:package": "vsce package",
"rename": "node -e \"require('fs').rename('out/index.js', 'out/extension.js', function(err) { if (err) console.log(err); console.log('File successfully renamed!') })\"",
"inject:html2canvas": "node inject_html2canvas.js",
"bundle": "rm -rf out && npx ncc build src/extension.ts -o out && npm run rename && npm run inject:html2canvas",
"compile": "tsc -p ./",
"lint": "eslint src --ext ts",
"watch": "tsc -watch -p ./",
"test": "npm run compile && node out/test/runTest.js",
"tag": "git tag v$(node -e \"console.log(require('./package.json').version)\")",
"build": "npm run bundle && vsce package",
"publish": "npm run test && npm run build && vsce publish && npm run tag && git push origin master"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/bip39": "^3.0.0",
"@types/chai": "^4.3.1",
"@types/elliptic": "^6.4.12",
"@types/express": "^4.17.11",
"@types/glob": "^7.1.3",
"@types/mocha": "^8.2.3",
"@types/node": "^12.11.7",
"@types/request": "^2.48.5",
"@types/uuid": "^8.3.0",
"@types/vscode": "^1.60.0",
"@types/yaml": "^1.9.7",
"@types/zxcvbn": "^4.4.0",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"@vercel/ncc": "^0.33.4",
"@vscode/test-electron": "^2.1.4",
"chai": "^4.3.6",
"eslint": "^7.32.0",
"html2canvas": "^1.4.1",
"mocha": "^8.4.0",
"ts-node": "^10.8.1",
"typescript": "^4.0.2",
"vsce": "^2.7.0",
"vscode-test": "^1.4.0"
},
"dependencies": {
"bcrypt": "^5.0.1",
"elliptic": "^6.5.4",
"express": "^4.17.1",
"glob": "^7.1.6",
"hash-identifier": "^1.0.1",
"request": "^2.88.2",
"selfsigned": "^1.10.8",
"showdown": "^1.9.1",
"uuid": "^8.3.1",
"yaml": "^2.1.1",
"zxcvbn": "^4.4.2"
},
"keywords": [
"check",
"files",
"decorators",
"explorer",
"server",
"serve",
"sort",
"swissknife",
"scriptable",
"encode",
"decode",
"convertion",
"script",
"template",
"insert",
"developer",
"sha1",
"sha256",
"sha512",
"bip39",
"mnemonic",
"md5",
"base64",
"hex",
"count",
"words",
"characters",
"rsa",
"public",
"private",
"key",
"keypair",
"certificate",
"self signed",
"rgb",
"crypto",
"currency",
"convertor",
"url",
"html",
"binary",
"uuid",
"csv",
"markdown",
"random",
"string",
"password",
"timestamp",
"date",
"request",
"fetch",
"jwt",
"lorem",
"ipsum",
"vscode",
"decorator",
"checklist"
],
"icon": "data/swissknife.png",
"__metadata": {
"id": "53d8fce2-be01-4fc7-af1b-f1d86aa206e8",
"publisherDisplayName": "Luis Fontes",
"publisherId": "bbfd4568-de4a-4889-9207-341eda15f543",
"isPreReleaseVersion": false
}
}