-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
314 lines (314 loc) · 10.8 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
{
"name": "metago",
"displayName": "MetaGo",
"description": "vscode cursor move and select; jump, navigation, goto, acejump",
"icon": "images/metagoV4.gif",
"version": "4.3.2",
"publisher": "metaseed",
"homepage": "https://github.com/metaseed/metaGo",
"license": "MIT",
"keywords": [
"keyboard",
"cursor",
"jump",
"jumpy",
"goto",
"navigation",
"EasyMotion",
"bookmark",
"acejump",
"metaGo",
"center",
"screen",
"focus screen",
"space jumper",
"metaWord",
"line selection",
"surrounding-pair",
"change pair",
"select pair",
"html tag pair"
],
"extensionPack": [
"metaseed.metaWord",
"metaseed.metaJump"
],
"repository": {
"type": "git",
"url": "https://github.com/metaseed/metaGo.git"
},
"bugs": {
"url": "https://github.com/metaseed/metaGo/issues",
"email": "[email protected]"
},
"changelog": "https://github.com/metaseed/metaGo/blob/master/CHANGELOG.md",
"manual": "https://github.com/metaseed/metaGo/blob/master/README.md#features-summary",
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./dist/extension",
"contributes": {
"commands": [
{
"command": "metago.showLandingPage",
"title": "xx: metaGo.showLandingPage.ChangeLog, what's new"
},
{
"command": "metaGo.selectionSwitchActiveWithAnchor",
"title": "xx: metaGo.selectionSwitchActiveWithAnchor"
},
{
"command": "metaGo.selectLineUp",
"title": "xx: metaGo.Select Line Up"
},
{
"command": "metaGo.selectLineDown",
"title": "xx: metaGo.Select Line Down"
},
{
"command": "metaGo.changeSurroundingPair",
"title": "xx: metaGo select(change) the surrounding pairs"
},
{
"command": "metaGo.inSurroundingPairSelection",
"title": "xx: metaGo select(change) inside the surrounding pairs"
},
{
"command": "metaGo.inSurroundingPairSelectionWithPairs",
"title": "xx: metaGo select(change) both the surrounding pairs and the content inside"
},
{
"command": "metaGo.scrollCurrentLineToMiddle",
"title": "xx: metaGo.scroll current line to Middle"
},
{
"command": "metaGo.scrollCurrentLineToTop",
"title": "xx: metaGo.scroll current line to Top"
},
{
"command": "metaGo.scrollCurrentLineToBottom",
"title": "xx: metaGo.scroll current line to Bottom"
},
{
"command": "metaGo.gotoEmptyLineUp",
"title": "xx: metaGo.select Empty Line Move Up"
},
{
"command": "metaGo.selectEmptyLineUp",
"title": "xx: metaGo.select Empty Line Up"
},
{
"command": "metaGo.gotoEmptyLineDown",
"title": "xx: metaGo.Goto Empty Line Down"
},
{
"command": "metaGo.selectEmptyLineDown",
"title": "xx: metaGo.Select Empty Line Down"
},
{
"command": "metaGo.bookmark.toggle",
"title": "xx: metaGo.Bookmark Toggle"
},
{
"command": "metaGo.bookmark.view",
"title": "xx: metaGo.Bookmark View"
},
{
"command": "metaGo.bookmark.clear",
"title": "xx: metaGo.Bookmark Clear"
}
],
"keybindings": [
{
"command": "metaGo.selectionSwitchActiveWithAnchor",
"key": "alt+a",
"when": "editorTextFocus && editorHasSelection"
},
{
"command": "metaGo.selectLineUp",
"key": "ctrl+o",
"when": "textInputFocus && editorHasSelection"
},
{
"command": "metaGo.selectLineDown",
"key": "ctrl+l",
"when": "textInputFocus"
},
{
"command": "metaGo.changeSurroundingPair",
"key": "alt+p",
"when": "editorTextFocus"
},
{
"command": "metaGo.inSurroundingPairSelection",
"key": "alt+shift+p",
"when": "editorTextFocus"
},
{
"command": "metaGo.inSurroundingPairSelectionWithPairs",
"key": "ctrl+alt+p",
"when": "editorTextFocus"
},
{
"command": "metaGo.scrollCurrentLineToMiddle",
"key": "alt+m",
"when": "editorTextFocus"
},
{
"command": "metaGo.scrollCurrentLineToBottom",
"key": "alt+b",
"when": "editorTextFocus"
},
{
"command": "metaGo.scrollCurrentLineToTop",
"key": "alt+t",
"when": "editorTextFocus"
},
{
"command": "metaGo.gotoEmptyLineUp",
"key": "alt+home",
"when": "editorTextFocus"
},
{
"command": "metaGo.selectEmptyLineUp",
"key": "alt+shift+home",
"when": "editorTextFocus"
},
{
"command": "metaGo.gotoEmptyLineDown",
"key": "alt+end",
"when": "editorTextFocus"
},
{
"command": "metaGo.selectEmptyLineDown",
"key": "alt+shift+end",
"when": "editorTextFocus"
},
{
"command": "metaGo.bookmark.toggle",
"key": "alt+'",
"when": "editorTextFocus"
},
{
"command": "metaGo.bookmark.view",
"key": "alt+\\"
},
{
"command": "metaGo.bookmark.previous",
"key": "alt+[",
"when": "editorTextFocus"
},
{
"command": "metaGo.bookmark.next",
"key": "alt+]",
"when": "editorTextFocus"
},
{
"command": "metaGo.jumpToBracket",
"key": "ctrl+shift+\\",
"when": "editorTextFocus"
}
],
"menus": {
"editor/context": [
{
"command": "metaGo.bookmark.toggle",
"group": "bookmarks"
}
],
"editor/title": [
{
"command": "metaGo.bookmark.view",
"group": "bookmarks"
},
{
"command": "metaGo.bookmark.clear",
"group": "bookmarks"
}
]
},
"configuration": {
"title": "metaseed metaGo",
"type": "object",
"properties": {
"metaGo.surroundPairs": {
"type": "object",
"default": [
[
"{",
"}"
],
[
"(",
")"
],
[
"[",
"]"
],
[
"<",
">"
],
[
"/<(?!/)(?!!)(?!br[\\s>])(?!area[\\s>])(?!base[\\s>])(?!col[\\s>])(?!command[\\s>])(?!embed[\\s>])(?!hr[\\s>])(?!img[\\s>])(?!input[\\s>])(?!keygen[\\s>])(?!link[\\s>])(?!meta[\\s>])(?!param[\\s>])(?!source[\\s>])(?!track[\\s>])(?!wbr[\\s>])((?:.(?!/>))+?)(?<!/)>/ms",
"/</(.+?)>/",
"t"
]
]
},
"metaGo.bookmark.saveBookmarksInProject": {
"type": "boolean",
"default": false,
"description": "Allow bookmarks to be saved (and restored) locally in the opened Project/Folder instead of VS Code"
},
"metaGo.bookmark.gutterIconPath": {
"type": "string",
"default": "",
"description": "Path to another image to be presented as Bookmark"
}
}
}
},
"scripts": {
"changelog": "node changelog.js",
"login": "vsce login metaseed",
"vscode:prepublish": "node changelog.js && webpack-cli --mode production",
"publish": "git tag -a %npm_package_name%V%npm_package_version% -m '%npm_package_name%V%npm_package_version%' && git push origin --tags && npm run publishOnly",
"publishOnly": "vsce publish",
"vscode:prepackage": "node changelog.js && webpack --mode production",
"package": "vsce package -o release",
"deploy": "npm run package && code --uninstall-extension metaseed.%npm_package_name% && code --install-extension release/%npm_package_name%-%npm_package_version%.vsix",
"build": "webpack-cli --mode development",
"watch": "webpack-cli --mode development --watch",
"test-compile": "tsc -p ./",
"lint": "tslint -p ./",
"tswatch": "tsc -watch -p ./",
"compile": "tsc -p ./",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js"
},
"engines": {
"vscode": "^1.59.0"
},
"devDependencies": {
"@types/mocha": "^9.0.0",
"@types/node": "^16.6.1",
"@types/vscode": "^1.59.0",
"eslint": "^7.32.0",
"mocha": "^9.0.3",
"raw-loader": "^4.0.2",
"source-map-support": "^0.5.19",
"ts-loader": "^9.2.5",
"typescript": "^4.3.5",
"vsce": "^1.96.1",
"webpack": "^5.50.0",
"webpack-cli": "^4.8.0"
},
"dependencies": {
"semver": "^7.3.5"
}
}