-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.12 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
{
"name": "multiclaude",
"version": "0.1.0",
"private": true,
"description": "Run and manage multiple Claude Code terminal sessions in one browser window",
"type": "module",
"scripts": {
"dev": "concurrently -n server,web -c blue,green \"tsx watch server/index.ts\" \"vite\"",
"build": "tsc -p tsconfig.server.json && vite build",
"start": "node dist/server/index.js"
},
"dependencies": {
"@fastify/static": "^8.0.0",
"@xterm/addon-fit": "^0.10.0",
"@xterm/addon-search": "^0.15.0",
"@xterm/addon-unicode11": "^0.8.0",
"@xterm/addon-web-links": "^0.11.0",
"@xterm/xterm": "^5.5.0",
"fastify": "^5.0.0",
"flexlayout-react": "^0.9.2",
"node-pty": "^1.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"ws": "^8.18.0"
},
"devDependencies": {
"@tailwindcss/vite": "^4.0.0",
"@types/node": "^22.0.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@types/ws": "^8.5.0",
"@vitejs/plugin-react": "^4.3.0",
"concurrently": "^9.0.0",
"tailwindcss": "^4.0.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"vite": "^6.0.0"
}
}