-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.69 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.69 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
{
"name": "claudedash",
"version": "1.1.29",
"description": "Local agent control plane with recovery, quality gates, and context safety for Claude Code",
"type": "module",
"bin": {
"claudedash": "dist/cli.js"
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "tsx watch src/cli.ts start",
"build": "tsc && cd dashboard && npm run build",
"build:core": "tsc",
"build:dashboard": "cd dashboard && npm run build",
"lint": "eslint src/",
"test": "vitest --run",
"test:coverage": "vitest --coverage",
"version": "node scripts/sync-version.mjs && git add dashboard/package.json src/cli.ts"
},
"keywords": [
"claude",
"claude-code",
"ai-agent",
"monitoring",
"observability",
"control-plane",
"task-tracking",
"recovery",
"devtools"
],
"author": "Yunus Emre Gurlu <yunusemregurlu@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/yunusemrgrl/claudedash.git"
},
"bugs": {
"url": "https://github.com/yunusemrgrl/claudedash/issues"
},
"homepage": "https://github.com/yunusemrgrl/claudedash#readme",
"license": "MIT",
"dependencies": {
"@fastify/cors": "^11.0.0",
"@fastify/rate-limit": "^10.0.0",
"@fastify/static": "^9.0.0",
"chokidar": "^5.0.0",
"commander": "^12.0.0",
"fastify": "^5.7.4"
},
"devDependencies": {
"@types/node": "^20.11.16",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^10.0.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vitest": "^4.0.18"
},
"overrides": {
"minimatch": ">=10.2.1"
}
}