-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
318 lines (318 loc) · 12.7 KB
/
package.json
File metadata and controls
318 lines (318 loc) · 12.7 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
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
{
"name": "master-key",
"displayName": "Master Key",
"publisher": "haberdashPI",
"description": "Master your keybindings with documentation, discoverability, modal bindings, macros and expressive configuration",
"version": "1.0.1",
"icon": "logo.png",
"repository": {
"url": "https://github.com/haberdashPi/vscode-master-key"
},
"engines": {
"vscode": "^1.101.0"
},
"license": "MIT",
"categories": [
"Other",
"Keymaps"
],
"extensionKind": [
"ui"
],
"activationEvents": [
"onCommand:master-key.do",
"onCommand:master-key.prefix",
"onCommand:master-key.ignore",
"onCommand:master-key.search",
"onCommand:master-key.setValue"
],
"main": "./out/node/index.js",
"browser": "./out/browser/index.js",
"contributes": {
"walkthroughs": [
{
"id": "master-key.intro",
"title": "Master Key Customization",
"description": "Start using Master Key's powerful keybinding tools",
"steps": [
{
"title": "Activate a Preset",
"id": "activate-bindings",
"description": "Insert a pre-defined set of keybindings into your key map.",
"completionEvents": [
"onCommand:master-key.activateBindings"
],
"media": {
"markdown": "src/docs/walkthrough/activate-bindings.md"
}
},
{
"id": "install-extensions",
"media": {
"markdown": "src/docs/walkthrough/install-extensions.md"
},
"title": "Install Preset Extensions",
"description": "Install the pre-specified set of extensions your preset requires to work properly.",
"completionEvents": [
"onCommand:master-key.installRequiredExtensions"
]
},
{
"id": "review-documentation",
"media": {
"markdown": "src/docs/walkthrough/review-documentation.md"
},
"title": "Review Documentation",
"description": "Review the documentation of the preset you activated to understand the keybindings you've defined.",
"completionEvents": [
"onCommand:master-key.showTextDoc"
]
},
{
"id": "edit-preset",
"media": {
"markdown": "src/docs/walkthrough/edit-preset.md"
},
"title": "Edit Preset",
"description": "You can create your own bindings by editing a copy of a preset",
"completionEvents": [
"onCommand:master-key.editPreset"
]
},
{
"id": "activate-custom-bindings",
"media": {
"markdown": "src/docs/walkthrough/activate-custom-bindings.md"
},
"title": "Activate Preset Edits",
"description": "Once you have opened a copy of the present, customize it to your own needs, and activate the file to make the necessary changes to your keybindings.",
"completionEvents": [
"onCommand:master-key.activateCurrentFile"
]
}
]
}
],
"commands": [
{
"command": "master-key.internal-testCommand",
"title": "Test Command (Internal Debugging)",
"enablement": "master-key.val.internal__debug__flag"
},
{
"command": "master-key.togglePaletteDisplay",
"category": "Master Key",
"title": "Toggle automatic display of command suggestions in sidebar"
},
{
"command": "master-key.activateBindings",
"category": "Master Key",
"title": "Activate Keybindings"
},
{
"command": "master-key.activateCurrentFile",
"category": "Master Key",
"title": "Activate Keybindings in Current File"
},
{
"command": "master-key.commandSuggestions",
"category": "Master Key",
"title": "Key Suggestions..."
},
{
"command": "master-key.toggleSuggestions",
"category": "Master Key",
"title": "Toggle Key Suggestions"
},
{
"command": "master-key.showVisualDoc",
"category": "Master Key",
"title": "Show Visual Documentation"
},
{
"command": "master-key.installRequiredExtensions",
"category": "Master Key",
"title": "Install Extensions Required by Keybindings"
},
{
"command": "master-key.toggleVisualDocModifiers",
"category": "Master Key",
"title": "Toggle Visual Doc Modifier by frequency"
},
{
"command": "master-key.deactivateBindings",
"category": "Master Key",
"title": "Deactivate Master Keybindings"
},
{
"command": "master-key.installKeybindingExtensions",
"category": "Master Key",
"title": "Install Active Keybinding Extensions"
},
{
"command": "master-key.editPreset",
"category": "Master Key",
"title": "New Keybinding Copy"
},
{
"command": "master-key.importUserBindings",
"category": "Master Key",
"title": "Import User Bindings"
},
{
"command": "master-key.importDefaultBindings",
"category": "Master Key",
"title": "Import Default Bindings"
},
{
"command": "master-key.showTextDoc",
"category": "Master Key",
"title": "Show Text Documentation"
}
],
"views": {
"masterKeyBindingList": [
{
"id": "masterKeySidePanel",
"name": "Key Suggestions",
"icon": "logo.png"
}
],
"masterKeyVisualDoc": [
{
"type": "webview",
"id": "masterkey.visualDoc",
"name": "Master Key Bindings",
"contextualTitle": "Keys",
"icon": "logo.png",
"visibility": "visible"
}
]
},
"viewsContainers": {
"activitybar": [
{
"id": "masterKeyBindingList",
"title": "Master Key",
"icon": "logo.png"
}
],
"panel": [
{
"id": "masterKeyVisualDoc",
"title": "Master Key Bindings",
"icon": "logo.png"
}
]
},
"keybindings": [
{
"key": "ctrl+shift+;",
"command": "master-key.toggleSuggestions"
},
{
"key": "ctrl+k ctrl+shift+m",
"mac": "cmd+k cmd+shift+m",
"command": "master-key.toggleVisualDocModifiers"
}
],
"configuration": {
"properties": {
"master-key.layoutIndependence": {
"title": "Use Layout Independent Bindings",
"type": "boolean",
"description": "When enabled, bindings do not match the keys on your keyboard, instead matching the keys on the default US layout.",
"default": false
},
"master-key.maxCommandHistory": {
"title": "Command History Maximum",
"type": "integer",
"description": "The maximum number of previously run commands that are saved.",
"default": 1024
},
"master-key.suggestionDelay": {
"title": "Suggestion Delay",
"type": "integer",
"default": 500,
"description": "Time to wait, in milliseconds, before showing command suggestions for multi-key commands. Command suggestion must be enabled for this setting to apply."
},
"master-key.commandSuggestionsEnabled": {
"title": "Enable Command Suggestions",
"type": "boolean",
"default": true,
"description": "When set, command suggestions will be displayed after a delay during a multi-key sequence."
},
"master-key.keyDisplayDelay": {
"title": "Key Display Delay",
"type": "integer",
"description": "Time to wait, in milliseconds, before clearing status bar display of the most recently pressed key sequence. (set to 0 to hide display entirely)"
},
"master-key.searchMatchBackground": {
"title": "Background of current search match",
"type": "string",
"description": "A html format color styling to highlight the current search match(if left blank defaults to built-in search style)."
},
"master-key.searchMatchBorder": {
"title": "Border of current search match",
"type": "string",
"description": "A html format color styling for the border of the current search match (if left blank defaults to built-in search style)."
},
"master-key.searchOtherMatchesBackground": {
"title": "Background of non-current search matches",
"type": "string",
"description": "A html format color styling to highlight other search matches (if left blank defaults to built-in search style)."
},
"master-key.searchOtherMatchesBorder": {
"title": "Border of non-current search matches",
"type": "string",
"description": "A html format color styling for the border of other search matches (if left blank defaults to built-in search style)."
}
}
}
},
"devDependencies": {
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
"@playwright/test": "^1.53.2",
"@stylistic/eslint-plugin": "^5.1.0",
"@types/assert": "^1.5.11",
"@types/lodash": "^4.17.20",
"@types/mocha": "^10.0.10",
"@types/node": "^24.0.10",
"@types/object-hash": "^3.0.6",
"@types/pako": "^2.0.3",
"@types/semver": "^7.7.0",
"@types/vscode": "^1.101.0",
"@types/web": "^0.0.243",
"@typescript-eslint/eslint-plugin": "^8.35.1",
"@typescript-eslint/parser": "^8.35.1",
"@vscode/test-cli": "^0.0.11",
"@vscode/test-electron": "^2.5.2",
"@vscode/test-web": "^0.0.70",
"assert": "^2.1.0",
"async-mutex": "^0.5.0",
"esbuild": "^0.25.5",
"eslint": "^9.30.1",
"fastestsmallesttextencoderdecoder": "^1.0.22",
"glob": "^11.0.3",
"globals": "^16.3.0",
"istanbul-merge": "^2.0.0",
"lodash": "^4.17.21",
"marked": "^17.0.1",
"mocha": "^11.7.1",
"nyc": "^17.1.0",
"object-hash": "^3.0.0",
"pako": "^2.1.0",
"safe-expression": "^1.0.2",
"semver": "^7.7.2",
"smol-toml": "^1.6.0",
"string.prototype.replaceall": "^1.0.10",
"tsx": "^4.21.0",
"type-fest": "^4.41.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.35.1",
"vitepress": "^1.6.4",
"vscode-uri": "^3.1.0",
"zod": "^3.25.67",
"zod-validation-error": "^3.5.2"
}
}