-
-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.41 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
45
46
47
48
49
50
51
52
53
54
55
{
"name": "claude-code-studio",
"version": "5.67.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",
"electron:dev": "electron .",
"electron:smoke": "electron electron/smoke.js",
"dist:mac": "electron-builder --mac",
"dist:win": "electron-builder --win",
"dist:linux": "electron-builder --linux",
"dist": "electron-builder -mwl"
},
"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",
"electron-updater": "^6.8.9",
"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"
},
"main": "electron/main.js",
"devDependencies": {
"electron": "^42.4.1",
"electron-builder": "^26.15.3"
},
"author": "Lexus2016 <Lexus2016@users.noreply.github.com>"
}