-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.58 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
{
"name": "vscode-web-extension",
"displayName": "vscode-web-extension",
"description": "",
"version": "0.0.1",
"engines": {
"vscode": "^1.73.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:vscode-web-extension.createFile",
"onCommand:vscode-web-extension.showFiles"
],
"browser": "./dist/web/extension.js",
"contributes": {
"commands": [
{
"command": "vscode-web-extension.createFile",
"title": "Create a file"
},
{
"command": "vscode-web-extension.showFiles",
"title": "Show files"
}
]
},
"scripts": {
"vscode:prepublish": "npm run package-web",
"compile-web": "webpack",
"watch-web": "webpack --watch",
"package-web": "webpack --mode production --devtool hidden-source-map",
"lint": "eslint src --ext ts",
"run-in-browser": "vscode-test-web --browserType=chromium --extensionDevelopmentPath=. ."
},
"devDependencies": {
"@types/vscode": "^1.73.0",
"@types/webpack-env": "^1.18.0",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"assert": "^2.0.0",
"eslint": "^8.26.0",
"process": "^0.11.10",
"ts-loader": "^9.4.1",
"typescript": "^4.8.4",
"vsce": "^2.14.0",
"webpack": "^5.96.1",
"webpack-cli": "^4.10.0"
},
"main": "webpack.config.js",
"author": "",
"license": "ISC"
}