-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.29 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.29 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
{
"name": "claude-watch",
"version": "0.1.0",
"description": "Real-time observability dashboard for Claude Code — see exactly what happens inside your AI-assisted development sessions",
"type": "module",
"bin": {
"claude-watch": "./bin/claude-watch.js"
},
"main": "./dist/server/index.js",
"scripts": {
"build": "tsup && cd dashboard && npm run build",
"build:server": "tsup",
"build:dashboard": "cd dashboard && npm run build",
"dev": "tsx src/cli.ts start --dev",
"dev:dashboard": "cd dashboard && npm run dev",
"start": "node dist/cli.js start"
},
"keywords": [
"claude",
"claude-code",
"observability",
"dashboard",
"developer-tools",
"ai-coding",
"monitoring"
],
"license": "MIT",
"dependencies": {
"better-sqlite3": "^11.0.0",
"chalk": "^5.3.0",
"chokidar": "^3.6.0",
"commander": "^12.0.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"open": "^10.0.0",
"uuid": "^9.0.0",
"ws": "^8.16.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.8",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/uuid": "^9.0.7",
"@types/ws": "^8.5.10",
"tsup": "^8.0.0",
"tsx": "^4.7.0",
"typescript": "^5.4.0"
},
"engines": {
"node": ">=18.0.0"
}
}