-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
160 lines (160 loc) · 3.87 KB
/
package.json
File metadata and controls
160 lines (160 loc) · 3.87 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
{
"name": "@claude-world/agent-deck",
"version": "1.0.0",
"type": "module",
"main": "dist-electron/main.cjs",
"author": "Claude World <hello@claude-world.com>",
"description": "Web-based command center for monitoring and managing multiple AI coding agents. Supports Claude Code, Codex, Gemini CLI, and any LiteLLM-compatible model.",
"keywords": [
"ai",
"agent",
"claude",
"claude-code",
"codex",
"gemini",
"litellm",
"monitoring",
"dashboard",
"command-center",
"multi-agent"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/claude-world/agent-deck"
},
"homepage": "https://github.com/claude-world/agent-deck",
"bin": {
"agent-deck": "./bin/agent-deck.js"
},
"files": [
"bin/",
"cli/",
"dist/",
"dist-cli/",
"server/",
"team-configs/",
"package.json",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
"dev:server": "tsx watch server/index.ts",
"dev:client": "vite --port 5200",
"dev:electron": "NODE_ENV=development electron electron/main.ts",
"start": "tsx server/index.ts",
"build": "vite build --emptyOutDir",
"build:electron": "node scripts/build-electron.mjs",
"dist": "npm run build:electron && electron-builder",
"dist:mac": "npm run build:electron && electron-builder --mac",
"dist:win": "npm run build:electron && electron-builder --win",
"dist:linux": "npm run build:electron && electron-builder --linux",
"build:cli": "node scripts/build-cli.mjs",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build && npm run build:cli"
},
"build": {
"appId": "com.claude-world.agent-deck",
"productName": "Agent Deck",
"directories": {
"output": "release"
},
"files": [
"dist-electron/**/*",
"dist/**/*",
"team-configs/**/*"
],
"asarUnpack": [
"**/node_modules/better-sqlite3/**"
],
"icon": "build/icon.png",
"mac": {
"icon": "build/icon.icns",
"category": "public.app-category.developer-tools",
"target": [
{
"target": "dmg",
"arch": [
"universal"
]
},
{
"target": "zip",
"arch": [
"universal"
]
}
],
"darkModeSupport": true
},
"dmg": {
"contents": [
{
"x": 130,
"y": 220
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
},
"win": {
"target": [
"nsis",
"zip"
]
},
"nsis": {
"oneClick": true,
"allowToChangeInstallationDirectory": false
},
"linux": {
"target": [
"AppImage",
"deb"
],
"category": "Development"
}
},
"dependencies": {
"@dagrejs/dagre": "^2.0.4",
"@xyflow/react": "^12.10.1",
"better-sqlite3": "^12.8.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-use-websocket": "^4.13.0",
"uuid": "^10.0.0",
"ws": "^8.18.0",
"yaml": "^2.8.2",
"tsx": "^4.19.0",
"zustand": "^5.0.11"
},
"devDependencies": {
"@electron/rebuild": "^4.0.3",
"@types/better-sqlite3": "^7.6.12",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^22.0.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@types/uuid": "^10.0.0",
"@types/ws": "^8.5.12",
"@vitejs/plugin-react": "^4.3.0",
"autoprefixer": "^10.4.20",
"concurrently": "^9.0.0",
"electron": "^41.0.2",
"electron-builder": "^26.8.1",
"esbuild": "^0.25.0",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.14",
"typescript": "^5.5.0",
"vite": "^5.4.0"
}
}