-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.16 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.16 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
{
"name": "web-panel",
"publisher": "djnicholson",
"displayName": "Automatic web panel opener - webpanel.json",
"description": "Automatically opens web panels according to the webpanel.json file in the current workspace.",
"version": "1.0.3",
"icon": "resources/logo.png",
"galleryBanner": {
"color": "#000000",
"theme": "light"
},
"author": "David Nicholson",
"engines": {
"vscode": "^1.48.0"
},
"categories": [
"Other"
],
"bugs": {
"url": "https://github.com/djnicholson/web-panel/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/djnicholson/web-panel.git"
},
"activationEvents": [
"workspaceContains:**/.vscode/webpanel.json"
],
"keywords": [
"Web",
"Front-end"
],
"main": "./dist/extension/index.js",
"contributes": {},
"scripts": {
"compile": "npm run compile-ext && npm run compile-panel",
"compile-ext": "webpack --config src/extension/webpack.config.js --mode development",
"compile-panel": "webpack --config src/panel/webpack.config.js --mode development",
"compile-prod": "npm run compile-prod-ext && npm run compile-prod-panel",
"compile-prod-ext": "webpack --config src/extension/webpack.config.js --mode production",
"compile-prod-panel": "webpack --config src/panel/webpack.config.js --mode production",
"package": "npm run compile-prod && vsce package",
"watch": "concurrently -r npm:watch-*",
"watch-ext": "webpack --config src/extension/webpack.config.js --mode development --watch --info-verbosity verbose",
"watch-panel": "webpack --config src/panel/webpack.config.js --mode development --watch --info-verbosity verbose"
},
"devDependencies": {
"@types/node": "^13.13.26",
"@types/node-fetch": "^2.5.7",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"@types/vscode": "^1.48.0",
"concurrently": "^5.3.0",
"file-loader": "^6.1.0",
"node-fetch": "^2.6.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"ts-loader": "^7.0.5",
"ts-node": "^8.10.2",
"typescript": "^3.9.7",
"vsce": "^1.79.5",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
},
"dependencies": {}
}