-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.84 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
{
"name": "github-dash",
"version": "1.0.0",
"description": "GitHub repository dashboard — PRs, commits, releases, and workflow metrics",
"type": "module",
"bin": {
"github-dash": "./dist/cli.js"
},
"scripts": {
"dev": "concurrently -k \"pnpm dev:server\" \"pnpm dev:client\"",
"dev:server": "tsx watch src/server/cli-dev.ts",
"dev:client": "vite",
"build": "pnpm build:client && pnpm build:server",
"build:client": "vite build",
"build:server": "tsc -p tsconfig.server.json",
"start": "node dist/cli.js",
"typecheck": "tsc -p tsconfig.server.json --noEmit && tsc -p tsconfig.client.json --noEmit",
"test": "tsx scripts/smoke-utils.mts"
},
"files": [
"dist",
"README.md"
],
"engines": {
"node": ">=20"
},
"keywords": [
"github",
"dashboard",
"cli",
"pull-requests",
"releases",
"actions"
],
"license": "MIT",
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.3.247",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^9.3.0",
"@mui/material": "^9.3.0",
"@mui/x-charts": "^9.10.1",
"@octokit/rest": "^22.0.1",
"commander": "^15.0.0",
"cors": "^2.8.6",
"express": "^5.2.1",
"fflate": "^0.8.3",
"open": "^11.0.0",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.18.2",
"remark-gfm": "^4.0.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/node": "^26.1.2",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"@vitejs/plugin-react": "^6.0.5",
"concurrently": "^10.0.4",
"tsx": "^4.23.8",
"typescript": "^7.0.2",
"vite": "^8.2.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}