-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.76 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.76 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
{
"name": "claude-code-token-visualizer",
"version": "1.0.0",
"description": "Visualize Claude Code token usage with beautiful charts and statistics",
"main": "index.js",
"homepage": "https://github.com/[your-username]/claude-code-token-visualizer#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/[your-username]/claude-code-token-visualizer.git"
},
"bugs": {
"url": "https://github.com/[your-username]/claude-code-token-visualizer/issues"
},
"keywords": [
"claude",
"claude-code",
"token",
"usage",
"visualization",
"analytics",
"dashboard",
"react",
"typescript"
],
"author": "Your Name",
"license": "MIT",
"scripts": {
"dev": "concurrently \"npm run server:dev\" \"vite\"",
"dev:frontend": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"start": "npm run dev",
"clean": "rm -rf dist .vite",
"typecheck": "tsc --noEmit",
"lint": "echo 'No linter configured'",
"format": "echo 'No formatter configured'",
"test": "echo 'No tests configured'",
"serve": "npm run preview",
"build:prod": "npm run clean && npm run typecheck && npm run build",
"deploy": "npm run build:prod && echo 'Build complete - ready for deployment'",
"server": "cd server && npm start",
"server:dev": "cd server && npm run dev",
"server:install": "cd server && npm install"
},
"dependencies": {
"date-fns": "^3.0.0",
"lucide-react": "^0.263.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"recharts": "^2.10.0"
},
"devDependencies": {
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@vitejs/plugin-react": "^4.2.0",
"concurrently": "^8.2.0",
"typescript": "^5.3.0",
"vite": "^5.0.0"
}
}