-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.69 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
63
64
65
66
67
68
{
"name": "@soumyadebroy3/codeburn",
"version": "2.4.9",
"description": "See where your AI coding tokens go - by task, tool, model, and project",
"type": "module",
"main": "./dist/cli.js",
"bin": {
"codeburn": "dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"bundle-litellm": "node scripts/bundle-litellm.mjs",
"build": "node scripts/bundle-litellm.mjs && tsup && node -e \"require('fs').copyFileSync('src/cli.ts','dist/cli.js'); require('fs').chmodSync('dist/cli.js', 0o755)\"",
"dev": "tsx src/cli.ts",
"test": "vitest",
"prepublishOnly": "npm run build",
"coverage": "vitest run --coverage --coverage.reporter=lcov --coverage.reporter=text-summary"
},
"keywords": [
"claude-code",
"cursor",
"codex",
"ibm-bob",
"kimi",
"opencode",
"pi",
"codebuff",
"ai-coding",
"token-usage",
"cost-tracking",
"observability",
"developer-tools"
],
"engines": {
"node": ">=22.13.0"
},
"author": "AgentSeal <hello@agentseal.org>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/soumyadebroy3/codeburn.git"
},
"bugs": {
"url": "https://github.com/soumyadebroy3/codeburn/issues"
},
"homepage": "https://github.com/soumyadebroy3/codeburn#readme",
"publishConfig": {
"access": "public"
},
"dependencies": {
"chalk": "^5.6.2",
"commander": "^15.0.0",
"ink": "^7.0.4",
"react": "^19.2.6",
"strip-ansi": "^7.2.0"
},
"devDependencies": {
"@types/node": "^25.9.1",
"@types/react": "^19.2.15",
"@vitest/coverage-v8": "^4.1.7",
"tsup": "^8.5.1",
"tsx": "^4.22.3",
"typescript": "^6.0.3",
"vitest": "^4.1.7"
}
}