-
Notifications
You must be signed in to change notification settings - Fork 486
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.64 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.64 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": "@codebuff/cli",
"version": "1.0.0",
"private": true,
"type": "module",
"bin": {
"codebuff-tui": "./bin/codecane"
},
"exports": {
".": {
"bun": "./src/index.tsx",
"import": "./dist/index.js",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"dev": "bun run prebuild:agents && bun run src/index.tsx --cwd ..",
"prebuild:agents": "bun run scripts/prebuild-agents.ts",
"build:binary": "bun ./scripts/build-binary.ts codebuff $npm_package_version",
"release": "bun run scripts/release.ts",
"test": "NODE_ENV=production bun test",
"test:tmux-poc": "bun run src/__tests__/tmux-poc.ts",
"typecheck": "tsc --noEmit -p ."
},
"sideEffects": false,
"engines": {
"bun": "^1.3.5"
},
"dependencies": {
"@codebuff/sdk": "workspace:*",
"@gravity-ai/api": "^0.1.2",
"@opentui/core": "0.1.87",
"@opentui/react": "0.1.87",
"@tanstack/react-query": "^5.90.12",
"commander": "^14.0.1",
"immer": "^10.1.3",
"jimp": "^1.6.0",
"open": "^10.1.0",
"pino": "9.4.0",
"posthog-node": "^5.8.0",
"react": "^19.0.0",
"react-reconciler": "^0.32.0",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.1",
"remark-parse": "^11.0.0",
"string-width": "^7.2.0",
"systeminformation": "^5.30.7",
"terminal-image": "^4.1.0",
"ts-pattern": "^5.9.0",
"unified": "^11.0.0",
"yoga-layout": "^3.2.1",
"zod": "^4.2.1",
"zustand": "^5.0.8"
},
"devDependencies": {
"@types/react": "19.2.14",
"@types/react-reconciler": "^0.32.0",
"react-dom": "^19.0.0",
"strip-ansi": "^7.1.2"
}
}