-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 884 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 884 Bytes
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
{
"name": "terminaldraw",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "node scripts/dev.mjs",
"dev:ui": "vite --host 127.0.0.1 --port 5173",
"dev:bridge": "tsx watch bridge/server.ts",
"bridge": "tsx bridge/server.ts",
"typecheck": "tsc -p tsconfig.json && tsc -p tsconfig.bridge.json",
"build": "npm run typecheck && vite build",
"preview": "vite preview"
},
"dependencies": {
"@xterm/addon-fit": "^0.11.0",
"@xterm/xterm": "^6.0.0",
"lucide-react": "^1.7.0",
"node-pty": "^1.1.0",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"tldraw": "^4.5.6",
"ws": "^8.20.0"
},
"devDependencies": {
"@types/node": "^25.5.2",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/ws": "^8.18.1",
"@vitejs/plugin-react-swc": "^3.10.2",
"tsx": "^4.21.0",
"typescript": "^5.8.3",
"vite": "^7.0.1"
}
}