-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.08 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.08 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
{
"name": "tokencost",
"version": "1.0.0",
"description": "Provider-agnostic LLM token cost tracking, budgeting, and analytics CLI",
"main": "dist/index.js",
"bin": {
"tokencost": "dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"test": "jest --coverage",
"test:watch": "jest --watch",
"lint": "eslint src/ --ext .ts",
"clean": "rimraf dist",
"prepublishOnly": "npm run build"
},
"keywords": [
"llm",
"token",
"cost",
"analytics",
"budget",
"openai",
"anthropic",
"gemini",
"cli"
],
"author": "JSLEEKR",
"license": "MIT",
"devDependencies": {
"@types/better-sqlite3": "^7.6.8",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.0",
"@types/uuid": "^10.0.0",
"jest": "^29.7.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"dependencies": {
"better-sqlite3": "^11.0.0",
"chalk": "^4.1.2",
"cli-table3": "^0.6.3",
"commander": "^12.0.0",
"uuid": "^9.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}