-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.21 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
80
81
82
83
84
85
{
"name": "vizcar",
"displayName": "ViZCaR",
"description": "Visualizer for ViCaR",
"version": "0.0.6",
"repository": "https://github.com/inQWIRE/VizCaR/",
"publisher": "inQWIRE",
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:vizcar.lspRender"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "vizcar.activate",
"title": "vizcar: activate: Start rendering expressions with vizcar automatically."
},
{
"command": "vizcar.deactivate",
"title": "vizcar: deactivate: Stop rendering expressions with vizcar automatically."
}
],
"configuration": {
"title": "VizCAR",
"properties": {
"vizcar.colorScheme": {
"type": "array",
"items": {
"type": "string"
},
"default": [
"#ffe2db",
"#ffeae5",
"#d9f4fd",
"#c1e8f5",
"#a8dded",
"#f7d0fb",
"#fbdefd",
"#ffffc8",
"#ffffb0"
],
"description": "Provide your preferred color scheme, as an array of hex codes."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile & 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"
}
}