-
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 971 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 971 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
36
37
38
39
40
41
42
{
"name": "claude-code-studio",
"version": "5.48.0",
"description": "Full-featured web workspace for Claude Code — chat, Kanban, multi-agent, MCP, skills, projects",
"bin": {
"claude-code-studio": "./bin/cli.js"
},
"scripts": {
"start": "node server.js",
"dev": "node --watch server.js",
"postinstall": "node scripts/install-hooks.js",
"release": "node scripts/release.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Lexus2016/claude-code-studio.git"
},
"keywords": [
"claude",
"claude-code",
"ai",
"chat",
"mcp"
],
"license": "MIT",
"engines": {
"node": ">=18"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"express": "^4.21.0",
"express-rate-limit": "^8.2.1",
"helmet": "^8.1.0",
"multer": "^1.4.5-lts.1",
"ssh2": "^1.17.0",
"ws": "^8.18.0"
},
"optionalDependencies": {
"better-sqlite3": "^11.0.0"
}
}