-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.24 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.24 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
{
"name": "hurlicane",
"version": "1.0.0",
"license": "Apache-2.0",
"private": true,
"type": "module",
"scripts": {
"dev": "concurrently \"npm run server:dev\" \"npm run client:dev\"",
"server:dev": "NODE_OPTIONS='--experimental-sqlite' tsx watch --ignore './data/**' src/server/index.ts",
"client:dev": "vite",
"build": "tsc -p tsconfig.server.json && vite build",
"server:start": "node dist/server/index.js"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.78.0",
"@modelcontextprotocol/sdk": "^1.27.1",
"@types/compression": "^1.8.1",
"@xterm/addon-fit": "^0.10.0",
"@xterm/xterm": "^5.5.0",
"compression": "^1.8.1",
"cors": "^2.8.6",
"express": "^4.22.1",
"node-pty": "^1.1.0",
"socket.io": "^4.8.3",
"uuid": "^9.0.1",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^4.17.25",
"@types/node": "^20.19.35",
"@types/react": "^18.3.28",
"@types/react-dom": "^18.3.7",
"@types/uuid": "^9.0.8",
"@vitejs/plugin-react": "^4.7.0",
"concurrently": "^8.2.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"socket.io-client": "^4.8.3",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^5.4.21"
}
}