forked from H4D3ZS/vscodium-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.32 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.32 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "vscode-rust-app",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite --configLoader native --host 0.0.0.0",
"dev:direct": "vite --configLoader native",
"dev:full": "npx tauri dev",
"dev:tauri": "npx tauri dev",
"dev:airi": "cd airi && pnpm dev --host",
"typecheck": "node --stack-size=10000 node_modules/typescript/bin/tsc",
"build": "vite build --configLoader native",
"prebuild:sidecar": "node scripts/prebuild-release.mjs",
"build:tauri": "npm run prebuild:sidecar && npm run build && npx tauri build",
"release": "powershell -ExecutionPolicy Bypass -File scripts/release.ps1",
"preview": "vite preview --configLoader native",
"tauri": "tauri",
"tauri:dev": "npx tauri dev",
"start-mitm": "node tools/mitmserver/server.js",
"test": "vitest run",
"test:watch": "vitest"
},
"devDependencies": {
"@tauri-apps/cli": "~2.10.0",
"@types/node": "^25.7.0",
"typescript": "~5.9.3",
"vite": "^7.3.1",
"vite-plugin-node-polyfills": "^0.26.0",
"vitest": "^3.2.4"
},
"dependencies": {
"@monaco-editor/react": "^4.7.0",
"@pixiv/three-vrm": "^3.5.2",
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.5.0",
"@tauri-apps/api": "~2.10.0",
"@tauri-apps/plugin-dialog": "^2.6.0",
"@types/diff": "^7.0.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/react-window": "^1.8.8",
"@vitejs/plugin-react": "^5.1.4",
"@vscode/codicons": "^0.0.44",
"@xterm/addon-canvas": "^0.7.0",
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-search": "^0.16.0",
"@xterm/addon-unicode11": "^0.9.0",
"@xterm/addon-web-links": "^0.12.0",
"@xterm/addon-webgl": "^0.19.0",
"@xterm/xterm": "^6.0.0",
"diff": "^8.0.4",
"framer-motion": "^12.38.0",
"lucide-react": "^1.7.0",
"marked": "^17.0.5",
"monaco-editor": "^0.55.1",
"ollama": "^0.6.3",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-markdown": "^10.1.0",
"react-window": "^2.2.7",
"reactflow": "^11.11.4",
"remark-gfm": "^4.0.1",
"three": "^0.183.2",
"zustand": "^5.0.11"
},
"overrides": {
"dompurify": "^3.4.2",
"monaco-editor": {
"dompurify": "^3.4.2"
},
"@monaco-editor/react": {
"dompurify": "^3.4.2"
}
}
}