-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.29 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.29 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
{
"name": "msxdevtool-extension",
"displayName": "MSXDevTool Extension",
"description": "MSXDevTool Extension for Visual Studio Code",
"version": "0.1.7",
"engines": {
"vscode": "^1.75.0"
},
"categories": [
"Other"
],
"main": "./out/extension.js",
"publisher": "fpracek",
"contributes": {
"commands": [
{
"command": "msxdevtool-extension.openWebview",
"title": "MSXDev tool"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "msxdevtool",
"title": "MSXDev Tool",
"icon": "media/icon.png"
}
]
},
"views": {
"msxdevtool": [
{
"type": "webview",
"id": "msxDevToolWebview",
"name": "Open designer"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./ "
},
"activationEvents": [],
"devDependencies": {
"@types/node": "16.x",
"@types/vscode": "^1.75.0",
"typescript": "^4.8.0"
},
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/fpracek/MSXDevToolExtension.git"
},
"dependencies": {
"detect-libc": "^2.0.3",
"monaco-editor": "^0.52.2",
"node-abi": "^3.73.0",
"node-addon-api": "^8.3.0"
}
}