Skip to content

Commit 46f945f

Browse files
committed
fix: restore package.json truncated by sed
1 parent daf711d commit 46f945f

1 file changed

Lines changed: 58 additions & 0 deletions

File tree

package.json

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
{
2+
"name": "codeburn",
3+
"version": "0.8.8",
4+
"description": "See where your AI coding tokens go - by task, tool, model, and project",
5+
"type": "module",
6+
"main": "./dist/cli.js",
7+
"bin": {
8+
"codeburn": "dist/cli.js"
9+
},
10+
"files": [
11+
"dist"
12+
],
13+
"scripts": {
14+
"build": "tsup",
15+
"dev": "tsx src/cli.ts",
16+
"test": "vitest",
17+
"prepublishOnly": "npm run build"
18+
},
19+
"keywords": [
20+
"claude-code",
21+
"cursor",
22+
"codex",
23+
"opencode",
24+
"pi",
25+
"ai-coding",
26+
"token-usage",
27+
"cost-tracking",
28+
"observability",
29+
"developer-tools"
30+
],
31+
"engines": {
32+
"node": ">=22"
33+
},
34+
"author": "AgentSeal <hello@agentseal.org>",
35+
"license": "MIT",
36+
"repository": {
37+
"type": "git",
38+
"url": "git+https://github.com/getagentseal/codeburn.git"
39+
},
40+
"bugs": {
41+
"url": "https://github.com/getagentseal/codeburn/issues"
42+
},
43+
"homepage": "https://github.com/getagentseal/codeburn#readme",
44+
"dependencies": {
45+
"chalk": "^5.4.1",
46+
"commander": "^13.1.0",
47+
"ink": "^7.0.0",
48+
"react": "^19.2.5"
49+
},
50+
"devDependencies": {
51+
"@types/node": "^22.19.17",
52+
"@types/react": "^19.2.14",
53+
"tsup": "^8.4.0",
54+
"tsx": "^4.19.0",
55+
"typescript": "^5.8.0",
56+
"vitest": "^3.1.0"
57+
}
58+
}

0 commit comments

Comments
 (0)