-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.09 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
{
"name": "ccperf",
"version": "0.1.3",
"description": "Analytics TUI + cross-platform reset scheduler for Claude Code. Hourly usage breakdown, cache efficiency, cost by project/model/session, and an OS-level ping scheduler to trigger session resets at your chosen time.",
"type": "module",
"main": "./dist/cli.js",
"bin": {
"ccperf": "dist/cli.js",
"ccp": "dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsx src/cli.ts",
"typecheck": "tsc --noEmit",
"prepublishOnly": "pnpm build"
},
"keywords": [
"claude-code",
"analytics",
"token-usage",
"cost-tracking",
"scheduler",
"observability"
],
"engines": {
"node": ">=20"
},
"dependencies": {
"@inquirer/prompts": "^7.4.0",
"cc-logs-helper": "^0.1.2",
"chalk": "^5.4.1",
"commander": "^13.1.0",
"ink": "^7.0.0",
"native-time-ago": "^1.0.1",
"react": "^19.2.5"
},
"devDependencies": {
"@types/node": "^22.10.0",
"@types/react": "^19.2.14",
"tsup": "^8.4.0",
"tsx": "^4.19.0",
"typescript": "^5.8.0"
}
}