-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.43 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.43 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
{
"name": "cc-api-statusline",
"version": "1.1.2",
"description": "Claude Code statusline tool that polls API usage from third-party proxy backends",
"type": "module",
"bin": {
"cc-api-statusline": "dist/cc-api-statusline.js"
},
"scripts": {
"start": "bun run src/main.ts --once",
"dev": "bun run src/main.ts",
"example": "cat docs/fixtures/ccstatusline-context.sample.json | bun run src/main.ts",
"test": "bun run build && vitest run",
"test:watch": "vitest",
"lint": "eslint src",
"build": "bun build src/main.ts --target=node --outfile=dist/cc-api-statusline.js",
"check": "bun run test && bun run lint",
"prepublishOnly": "bun run check"
},
"files": [
"dist/"
],
"keywords": [
"claude",
"statusline",
"api",
"usage",
"monitoring",
"tui",
"cli"
],
"author": "Liafonx",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/liafonx/cc-api-statusline.git"
},
"homepage": "https://github.com/liafonx/cc-api-statusline#readme",
"bugs": {
"url": "https://github.com/liafonx/cc-api-statusline/issues"
},
"dependencies": {},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/bun": "^1.1.14",
"eslint": "^9.17.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2",
"vitest": "^2.1.8"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"provenance": true
}
}