mirror of
https://github.com/YouXam/claude-code-usage-dashboard.git
synced 2025-12-19 13:12:11 +08:00
35 lines
929 B
JSON
35 lines
929 B
JSON
{
|
|
"name": "claude-code-usage-dashboard",
|
|
"version": "1.0.0",
|
|
"description": "Claude Code Usage Dashboard with billing period tracking",
|
|
"main": "server/index.ts",
|
|
"type": "module",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "bun --hot server/index.ts",
|
|
"start": "bun server/index.ts",
|
|
"begin-period": "bun scripts/begin-period.ts",
|
|
"build": "bun build client/main.tsx --outdir dist/client",
|
|
"setup": "bun install && bun scripts/setup-db.ts"
|
|
},
|
|
"dependencies": {
|
|
"@types/react": "^18.3.3",
|
|
"@types/react-dom": "^18.3.0",
|
|
"bun-plugin-tailwind": "^0.0.15",
|
|
"hono": "^4.5.0",
|
|
"react": "^18.3.1",
|
|
"react-dom": "^18.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "latest",
|
|
"@types/node": "^22.1.0",
|
|
"autoprefixer": "^10.4.21",
|
|
"postcss": "^8.5.6",
|
|
"tailwindcss": "^4.1.12",
|
|
"typescript": "^5.5.4"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^5"
|
|
}
|
|
}
|