-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.35 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
61
62
{
"name": "model-usage",
"version": "3.1.1",
"description": "Zero-config CLI for analyzing AI model usage & costs across all local TUI tools — pi, Claude Code, Codex, Gemini CLI, OpenCode, and more",
"bin": {
"model-usage": "dist/cli.js",
"mu": "dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"start": "node dist/cli.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"ai",
"llm",
"model",
"usage",
"statistics",
"cli",
"cost-tracking",
"token-counter",
"token-usage",
"developer-tools",
"api-usage",
"tui",
"claude-code",
"codex",
"gemini-cli",
"opencode",
"pi"
],
"author": "Evan Long <mail@evanlong.me>",
"license": "MIT",
"dependencies": {
"@inquirer/prompts": "^8.5.2",
"chalk": "^4.1.2",
"cli-table3": "^0.6.5",
"commander": "^11.1.0",
"fs-extra": "^11.1.1",
"nanospinner": "^1.2.2"
},
"engines": {
"node": ">=22.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/evanlong-me/model-usage.git"
},
"bugs": {
"url": "https://github.com/evanlong-me/model-usage/issues"
},
"homepage": "https://github.com/evanlong-me/model-usage#readme",
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^26.1.1",
"typescript": "^7.0.2"
}
}