-
Notifications
You must be signed in to change notification settings - Fork 98
/
package.json
44 lines (44 loc) · 1.15 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
{
"name": "qsc-workspace",
"workspaces": [
"./npm",
"./playground",
"./vscode"
],
"license": "MIT",
"engines": {
"node": ">=18.17.1"
},
"scripts": {
"eslint:check": "eslint -c ./.eslintrc.cjs --max-warnings 0 ./",
"prettier:check": "prettier -c --no-config ./",
"check": "npm run eslint:check && npm run prettier:check",
"prettier:fix": "prettier -w --no-config ./"
},
"private": true,
"devDependencies": {
"@types/chai": "^4.3.8",
"@types/mocha": "^10.0.2",
"@types/node": "^18.17",
"@types/vscode": "^1.83.0",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"@vscode/debugadapter": "^1.63.0",
"@vscode/debugprotocol": "^1.63.0",
"@vscode/extension-telemetry": "^0.8.5",
"@vscode/test-web": "^0.0.48",
"chai": "^4.3.10",
"esbuild": "^0.19.5",
"eslint": "^8.51.0",
"events": "^3.3.0",
"github-markdown-css": "^5.3.0",
"marked": "^9.1.2",
"mathjax": "^3.2.2",
"mocha": "^10.2.0",
"monaco-editor": "^0.44.0",
"preact": "^10.18.1",
"prettier": "^3.0.3",
"typescript": "^5.2.2",
"url": "^0.11.3"
}
}