-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.45 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": "cc-usage-bar",
"version": "0.4.2",
"description": "Show your Claude Code subscription usage (5h / 7d, or balance) in the statusline. Supports Anthropic, Kimi, GLM, MiniMax, DeepSeek, StepFun, SiliconFlow, OpenRouter, Novita.",
"keywords": [
"claude",
"claude-code",
"statusline",
"usage",
"quota",
"anthropic",
"kimi",
"glm",
"zhipu",
"minimax",
"deepseek",
"openrouter",
"siliconflow",
"novita",
"stepfun"
],
"license": "MIT",
"author": "ty861506831@gmail.com",
"repository": {
"type": "git",
"url": "git+https://github.com/TuYv/cc-usage-bar.git"
},
"bugs": {
"url": "https://github.com/TuYv/cc-usage-bar/issues"
},
"homepage": "https://github.com/TuYv/cc-usage-bar#readme",
"bin": {
"cc-usage-bar": "bin/cc-usage-statusline.js",
"cc-usage-statusline": "bin/cc-usage-statusline.js",
"cc-usage-fetch": "bin/cc-usage-fetch.js",
"cc-usage-bar-wrap": "bin/cc-usage-bar-wrap.js"
},
"files": [
"dist/src",
"bin",
"AGENTS.md",
"README.md",
"README.zh-CN.md",
"LICENSE"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"test": "node --test 'dist/test/**/*.test.js'",
"prepublishOnly": "npm run clean && npm run build && npm test"
},
"dependencies": {
"commander": "^12.1.0"
},
"devDependencies": {
"@types/node": "^20.14.0",
"typescript": "^5.5.0"
}
}