-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 985 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 985 Bytes
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
{
"name": "tokenwise",
"version": "0.1.0",
"description": "Claude Code token usage & cost tracker — real-time status bar, multi-provider pricing, 2700+ models",
"bin": {
"tokenwise": "dist/cli.js"
},
"scripts": {
"clean": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\"",
"build": "tsc && node -e \"require('fs').copyFileSync('src/interceptor-loader.js','dist/interceptor-loader.js')\" && node -e \"require('fs').copyFileSync('model_prices_and_context_window.json','dist/model_prices_and_context_window.json')\"",
"dev": "tsc --watch",
"check": "tsc --noEmit"
},
"files": ["dist", "model_prices_and_context_window.json", "README.md"],
"engines": { "node": ">=20.0.0" },
"license": "MIT",
"dependencies": {
"better-sqlite3": "^11.0.0",
"commander": "^12.0.0",
"chalk": "^5.3.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.0",
"@types/node": "^22.0.0",
"typescript": "^5.9.0"
}
}