-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.92 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
{
"name": "vizx",
"displayName": "ViZX",
"description": "Visualizer for the ZX calculus",
"version": "0.1.4",
"repository": "https://github.com/inQWIRE/ViZX/",
"publisher": "inQWIRE",
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:vizx.render",
"onCommand:vizx.lspRender",
"onCommand:vizx.activateRendering"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "vizx.render",
"title": "ZXViz: Render expressions with ZXViz"
},
{
"command": "vizx.lspRender",
"title": "ZXViz: Render expressions with ZXViz using CoqLSP information"
},
{
"command": "vizx.activateRendering",
"title": "ZXViz: Activate ZXViz automatic rendering"
},
{
"command": "vizx.deactivateRendering",
"title": "ZXViz: Deactivate ZXViz automatic rendering"
}
]
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "node ./esbuild.js",
"package": "NODE_ENV=production node ./esbuild.js",
"watch": "node ./esbuild.js --watch",
"lint": "eslint src --ext ts & npx prettier --write .",
"deploy": "vsce publish"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@babel/preset-typescript": "^7.21.4",
"@types/glob": "^7.2.0",
"@types/node": "14.x",
"@types/vscode": "^1.74.0",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"@vscode/test-electron": "^2.1.3",
"@vscode/vsce": "^2.18.0",
"babel-jest": "^29.5.0",
"eslint": "^8.11.0",
"glob": "^7.2.0",
"lodash": "^4.17.21",
"prettier": "2.8.4",
"typescript": "^4.5.5"
},
"dependencies": {
"deep-object-diff": "^1.1.9",
"esbuild": "0.16.00",
"esbuild-plugin-copy": "^2.0.2",
"typescript-parsec": "^0.3.2"
}
}