-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.7 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "claude-code-web-manager",
"version": "1.0.0",
"description": "Professional web interface for managing Claude Code CLI projects on Raspberry Pi",
"main": "server/app.js",
"scripts": {
"start": "node server/app.js",
"dev": "nodemon server/app.js",
"test": "echo \"Error: no test specified\" && exit 1",
"pm2:start": "pm2 start ecosystem.config.js",
"pm2:stop": "pm2 stop claude-code-web-manager",
"pm2:restart": "pm2 restart claude-code-web-manager",
"pm2:delete": "pm2 delete claude-code-web-manager"
},
"keywords": [
"claude-code",
"web-manager",
"raspberry-pi",
"terminal",
"project-management",
"ai-coding"
],
"author": "Claude Code Web Manager Team",
"license": "MIT",
"dependencies": {
"chokidar": "^3.5.3",
"compression": "^1.7.4",
"config": "^4.0.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-validator": "^7.2.1",
"fs-extra": "^11.1.1",
"helmet": "^7.0.0",
"joi": "^17.9.2",
"morgan": "^1.10.0",
"multer": "^2.0.1",
"node-pty": "^1.0.0",
"ps-tree": "^1.2.0",
"socket.io": "^4.7.2",
"systeminformation": "^5.21.7",
"winston": "^3.10.0"
},
"devDependencies": {
"nodemon": "^3.0.1",
"socket.io-client": "^4.8.1"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"os": [
"linux",
"darwin"
],
"cpu": [
"arm64",
"x64"
],
"repository": {
"type": "git",
"url": "git+https://github.com/claude-code/web-manager.git"
},
"bugs": {
"url": "https://github.com/claude-code/web-manager/issues"
},
"homepage": "https://github.com/claude-code/web-manager#readme"
}