-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.3 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.3 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
{
"name": "webchuck-ide",
"private": true,
"version": "2.1.6",
"type": "module",
"scripts": {
"clean": "rm -rf dist && rm -rf node_modules",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint --fix src",
"format": "prettier --write src",
"a11y": "axe http://localhost:5173 --exit"
},
"devDependencies": {
"@axe-core/cli": "^4.11.2",
"@eslint/js": "^10.0.1",
"@tailwindcss/vite": "^4.2.2",
"@types/js-search": "^1.4.4",
"@types/pako": "^2.0.4",
"@typescript-eslint/eslint-plugin": "^8.58.2",
"@typescript-eslint/parser": "^8.58.2",
"eslint": "^10.2.1",
"globals": "^17.5.0",
"prettier": "3.8.3",
"tailwindcss": "^4.2.2",
"typescript": "^6.0.3",
"vite": "^8.0.8"
},
"dependencies": {
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-web-links": "^0.12.0",
"@xterm/xterm": "^6.0.0",
"js-search": "^2.0.1",
"jszip": "^3.10.1",
"monaco-editor": "^0.55.1",
"monaco-vim": "^0.4.4",
"pako": "^2.1.0",
"webchuck": "github:ccrma/webchuck",
"xterm-link-provider": "^2.0.0"
},
"overrides": {
"dompurify": "^3.4.0"
}
}