-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
107 lines (107 loc) · 2.72 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
{
"name": "multichange",
"description": "Multi Change - a VS code exension to chain multiple find/replace commands",
"version": "0.0.6",
"publisher": "jckr",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jckr/multichange"
},
"engines": {
"vscode": "^1.50.0"
},
"extensionKind": [
"ui",
"workspace"
],
"categories": [
"Other"
],
"activationEvents": [
"onView:multichange.multichangeView",
"onCommand:multichange.addChange",
"onCommand:multichange.transform",
"onCommand:multichange.save",
"onCommand:multichange.import"
],
"main": "./out/extension.js",
"contributes": {
"views": {
"explorer": [
{
"type": "webview",
"id": "multichange.multichangeView",
"name": "Multichange"
}
]
},
"commands": [
{
"command": "multichange.addChange",
"category": "Multichange",
"title": "Add change"
},
{
"command": "multichange.transform",
"category": "Multichange",
"title": "Transform"
},
{
"command": "multichange.save",
"category": "Multichange",
"title": "Save",
"icon": "$(save)"
},
{
"command": "multichange.import",
"category": "Multichange",
"title": "Import",
"icon": "$(symbol-file)"
}
],
"menus": {
"view/title": [
{
"command": "multichange.save",
"group": "navigation",
"when": "view == multichange.multichangeView"
},
{
"command": "multichange.import",
"group": "navigation",
"when": "view == multichange.multichangeView"
}
]
}
},
"scripts": {
"lint": "eslint . --ext .ts,.tsx",
"watch": "tsc -w -p ./",
"test": "node ./out/test/runTest.js",
"vscode:prepublish": "npm run esbuild-base -- --minify",
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=out/main.js --external:vscode --format=cjs --platform=node",
"esbuild": "npm run esbuild-base -- --sourcemap",
"esbuild-watch": "npm run esbuild-base -- --sourcemap --watch",
"test-compile": "tsc -p ./"
},
"devDependencies": {
"@types/glob": "^7.1.4",
"@types/mocha": "^9.0.0",
"@types/node": "14.x",
"@types/vscode": "^1.50.0",
"@typescript-eslint/eslint-plugin": "^4.16.0",
"@typescript-eslint/parser": "^4.16.0",
"@vscode/test-electron": "^1.6.2",
"esbuild": "^0.14.0",
"eslint": "^7.21.0",
"glob": "^7.1.7",
"mocha": "^9.1.3",
"typescript": "^4.4.4"
},
"dependencies": {
"@vscode/codicons": "^0.0.26",
"@vscode/webview-ui-toolkit": "^0.8.4"
}
}