-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.38 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.38 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
{
"name": "agent-dashboard",
"version": "1.0.0",
"description": "Real-time dashboard for tracking Claude Code agent activity",
"private": true,
"author": "Son Nguyen",
"repository": {
"type": "git",
"url": "git+https://github.com/hoangsonww/Claude-Code-Agent-Monitor.git"
},
"bugs": {
"url": "https://github.com/hoangsonww/Claude-Code-Agent-Monitor/issues"
},
"license": "MIT",
"keywords": [
"claude",
"agent",
"dashboard",
"real-time",
"monitoring",
"activity-tracking",
"nodejs",
"express",
"react",
"websocket",
"sqlite",
"better-sqlite3"
],
"scripts": {
"dev": "concurrently -n server,client -c blue,green \"npm run dev:server\" \"npm run dev:client\"",
"dev:server": "node --watch server/index.js",
"dev:client": "cd client && npm run dev",
"build": "cd client && npm run build",
"start": "node server/index.js",
"setup": "npm install && cd client && npm install",
"mcp:install": "npm --prefix mcp install",
"mcp:build": "npm --prefix mcp run build",
"mcp:start": "npm --prefix mcp run start",
"mcp:start:http": "npm --prefix mcp run start:http",
"mcp:start:repl": "npm --prefix mcp run start:repl",
"mcp:dev": "npm --prefix mcp run dev",
"mcp:dev:http": "npm --prefix mcp run dev:http",
"mcp:dev:repl": "npm --prefix mcp run dev:repl",
"mcp:typecheck": "npm --prefix mcp run typecheck",
"mcp:docker:build": "docker build -f mcp/Dockerfile -t agent-dashboard-mcp:local .",
"mcp:podman:build": "podman build -f mcp/Dockerfile -t localhost/agent-dashboard-mcp:local .",
"install-hooks": "node scripts/install-hooks.js",
"seed": "node scripts/seed.js",
"import-history": "node scripts/import-history.js",
"clear-data": "node scripts/clear-data.js",
"test": "node --test server/__tests__/*.test.js && cd client && npm test",
"test:server": "node --test server/__tests__/*.test.js",
"test:client": "cd client && npm test",
"test:mcp": "npm --prefix mcp run test",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.21.2",
"uuid": "^11.1.0",
"ws": "^8.18.0"
},
"optionalDependencies": {
"better-sqlite3": "^11.7.0"
},
"devDependencies": {
"concurrently": "^9.1.2",
"prettier": "^3.8.1"
},
"engines": {
"node": ">=18.0.0"
}
}