-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.11 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
{
"publisher": "zwave-js",
"name": "config-editor",
"displayName": "Z-Wave JS Config Editor",
"description": "Editor support for authoring Z-Wave JS device configuration files",
"version": "0.0.15",
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:jsonc"
],
"contributes": {
"commands": [
{
"command": "configEditor.open",
"title": "Open Z-Wave JS Config Editor",
"icon": "$(open-preview)"
}
],
"menus": {
"editor/title": [
{
"when": "configEditor.hasConfigDocument",
"command": "configEditor.open",
"group": "navigation"
}
]
}
},
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "npm run package",
"build": "node ./esbuild.js",
"package": "NODE_ENV=production node ./esbuild.js",
"watch": "node ./esbuild.js --watch",
"pretest": "npm run build && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js",
"release": "release-script"
},
"devDependencies": {
"@alcalzone/release-script": "~3.7.0",
"@types/glob": "^8.0.0",
"@types/mocha": "^10.0.1",
"@types/node": "16.x",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@types/vscode": "^1.74.0",
"@types/vscode-webview": "^1.57.1",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"@vscode/test-electron": "^2.2.0",
"@vscode/webview-ui-toolkit": "^1.2.1",
"esbuild": "^0.16.17",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"glob": "^8.0.3",
"jsonc-parser": "^3.2.0",
"mocha": "^10.1.0",
"prettier": "^2.8.3",
"prettier-plugin-organize-imports": "^3.2.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^4.9.3"
},
"dependencies": {
"alcalzone-shared": "^4.0.8",
"vscode-json-languageservice": "^5.1.3"
},
"repository": {
"type": "git",
"url": "https://github.com/zwave-js/vscode-config-editor"
}
}