-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 750 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 750 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
{
"name": "tldraw-sandbox",
"version": "1.0.0",
"description": "An infinite canvas with AI-powered code terminals",
"type": "module",
"scripts": {
"dev": "vite",
"server": "node server.js",
"dev:all": "concurrently \"npm run server\" \"npm run dev\"",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tldraw": "^3.13.0",
"@xterm/xterm": "^5.5.0",
"@xterm/addon-fit": "^0.10.0",
"@anthropic-ai/sdk": "^0.52.0",
"concurrently": "^9.0.0"
},
"devDependencies": {
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.5.2",
"typescript": "^5.8.3",
"vite": "^6.3.5"
}
}