-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.77 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 1.77 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
{
"name": "vector-replace",
"version": "2.0.2",
"publisher": "tana-gh",
"engines": {
"vscode": "^1.52.0"
},
"license": "MIT",
"displayName": "Vector Replace",
"description": "Replace multiple words",
"categories": [
"Other"
],
"keywords": [
"search",
"replace",
"vectorreplace"
],
"galleryBanner": {},
"preview": false,
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "vectorreplace.showView",
"title": "Show View",
"category": "Vector Replace",
"icon": {
"light": "./media/icons/vector-replace-light.svg",
"dark": "./media/icons/vector-replace-dark.svg"
}
}
],
"menus": {
"editor/title": [
{
"command": "vectorreplace.showView",
"group": "navigation",
"when": "editorTextFocus"
}
]
}
},
"activationEvents": [
"onCommand:vectorreplace.showView"
],
"badges": [],
"markdown": "github",
"qna": "marketplace",
"dependencies": {},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^8.2.2",
"@types/node": "^15.6.1",
"@types/vscode": "^1.52.0",
"glob": "^7.1.7",
"mocha": "^8.4.0",
"ts-loader": "^9.2.2",
"tslint": "^6.1.3",
"typescript": "^4.3.2",
"vscode-test": "^1.5.2",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.0"
},
"extensionPack": [],
"extensionDependencies": [],
"scripts": {
"vscode:prepublish": "webpack --mode=production",
"webpack": "webpack --mode=development",
"webpack-dev": "webpack --mode=development --watch",
"test-compile": "tsc -p ./",
"test": "yarn test-compile && node ./out/test/runTest.js"
},
"icon": "extension/vector-replace.png",
"repository": {
"type": "git",
"url": "https://github.com/tana-gh/vector-replace.git"
},
"bugs": {
"url": "https://github.com/tana-gh/vector-replace/issues"
}
}