cc-api-statusline 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,54 @@
1
+ {
2
+ "name": "cc-api-statusline",
3
+ "version": "0.1.0",
4
+ "description": "Claude Code statusline tool that polls API usage from third-party proxy backends",
5
+ "type": "module",
6
+ "bin": {
7
+ "cc-api-statusline": "dist/cc-api-statusline.js"
8
+ },
9
+ "scripts": {
10
+ "start": "bun run src/main.ts --once",
11
+ "dev": "bun run src/main.ts",
12
+ "example": "cat docs/fixtures/ccstatusline-context.sample.json | bun run src/main.ts",
13
+ "test": "bun run build && vitest run",
14
+ "test:watch": "vitest",
15
+ "lint": "eslint src",
16
+ "build": "bun build src/main.ts --target=node --outfile=dist/cc-api-statusline.js",
17
+ "check": "bun run test && bun run lint",
18
+ "prepublishOnly": "bun run check"
19
+ },
20
+ "files": [
21
+ "dist/"
22
+ ],
23
+ "keywords": [
24
+ "claude",
25
+ "statusline",
26
+ "api",
27
+ "usage",
28
+ "monitoring",
29
+ "tui",
30
+ "cli"
31
+ ],
32
+ "author": "Liafonx",
33
+ "license": "MIT",
34
+ "repository": {
35
+ "type": "git",
36
+ "url": "https://github.com/liafonx/cc-api-statusline.git"
37
+ },
38
+ "homepage": "https://github.com/liafonx/cc-api-statusline#readme",
39
+ "bugs": {
40
+ "url": "https://github.com/liafonx/cc-api-statusline/issues"
41
+ },
42
+ "dependencies": {},
43
+ "devDependencies": {
44
+ "@eslint/js": "^9.17.0",
45
+ "@types/bun": "^1.1.14",
46
+ "eslint": "^9.17.0",
47
+ "typescript": "^5.7.2",
48
+ "typescript-eslint": "^8.18.2",
49
+ "vitest": "^2.1.8"
50
+ },
51
+ "engines": {
52
+ "node": ">=18.0.0"
53
+ }
54
+ }