-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.24 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.24 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
{
"name": "ccdash",
"version": "0.6.18",
"description": "Claude Code Dashboard - A comprehensive monitoring dashboard for Claude Code",
"main": "bin/ccdash.js",
"bin": {
"ccdash": "./bin/ccdash.js"
},
"scripts": {
"start": "node bin/ccdash.js",
"build": "npm run build:frontend && npm run build:backend",
"build:backend": "if [ -d \"backend\" ]; then cd backend && go build -o ../bin/ccdash-server cmd/server/main.go; else echo \"Backend directory not found, skipping backend build (likely CI environment)\"; fi",
"build:frontend": "if [ -d \"frontend\" ] && [ \"$CI\" != \"true\" ]; then cd frontend && (npm ci || npm install) && npx next build; else echo \"Skipping frontend build (CI environment or frontend directory not found)\"; fi",
"dev": "npm run dev:backend & npm run dev:frontend",
"dev:backend": "cd backend && PORT=6060 go run cmd/server/main.go",
"dev:frontend": "cd frontend && NEXT_PUBLIC_API_URL=http://localhost:6060/api npm run dev",
"dev:no-safety": "npm run dev:backend:no-safety & npm run dev:frontend",
"dev:backend:no-safety": "cd backend && PORT=6060 COMMAND_WHITELIST_ENABLED=false go run cmd/server/main.go",
"dev:unsafe": "npm run dev:backend:unsafe & npm run dev:frontend",
"dev:backend:unsafe": "cd backend && PORT=6060 COMMAND_WHITELIST_ENABLED=false go run cmd/server/main.go",
"postinstall": "node scripts/postinstall.js",
"preuninstall": "node scripts/postinstall.js cleanup",
"test": "echo \"No tests specified\" && exit 0",
"prepublishOnly": "npm run build"
},
"keywords": [
"claude",
"claude-code",
"monitoring",
"task-scheduler",
"ai",
"development-tools",
"cli"
],
"author": "CCDash team",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/satoshi03/ccdash.git"
},
"bugs": {
"url": "https://github.com/satoshi03/ccdash/issues"
},
"homepage": "https://github.com/satoshi03/ccdash#readme",
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"os": [
"darwin",
"linux",
"win32"
],
"preferGlobal": true,
"files": [
"bin/",
"scripts/",
"README.md"
],
"cpu": [
"x64",
"arm64"
],
"publishConfig": {
"access": "public"
}
}