-
Notifications
You must be signed in to change notification settings - Fork 493
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.69 KB
/
package.json
File metadata and controls
63 lines (63 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
{
"name": "@codebuff/cli",
"version": "1.0.0",
"private": true,
"type": "module",
"bin": {
"codebuff-tui": "./dist/index.js"
},
"exports": {
".": {
"bun": "./src/index.tsx",
"import": "./dist/index.js",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"dev": "./scripts/dev.sh",
"prebuild": "bun run build:sdk",
"build": "bun build src/index.tsx --outdir dist --target node --format esm",
"build:sdk": "cd ../sdk && bun run build",
"build:sdk-types": "cd ../sdk && bun run build:types",
"build:binary": "bun ./scripts/build-binary.ts codecane $npm_package_version",
"start": "bun run dist/index.js",
"test": "bun test",
"test:tmux-poc": "bun run src/__tests__/tmux-poc.ts",
"pretypecheck": "bun run build:sdk-types",
"typecheck": "tsc --noEmit -p ."
},
"sideEffects": false,
"engines": {
"bun": "^1.3.0"
},
"dependencies": {
"@codebuff/sdk": "workspace:*",
"@opentui/core": "^0.1.28",
"@opentui/react": "^0.1.28",
"@tanstack/react-query": "^5.62.8",
"commander": "^14.0.1",
"immer": "^10.1.3",
"open": "^10.1.0",
"pino": "9.4.0",
"posthog-node": "4.17.2",
"string-width": "^7.2.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",
"unified": "^11.0.0",
"yoga-layout": "^3.2.1",
"zod": "^3.24.1",
"zustand": "^5.0.8"
},
"devDependencies": {
"@types/bun": "^1.3.0",
"@types/node": "22",
"@types/react": "^18.3.12",
"@types/react-reconciler": "^0.32.0",
"react-dom": "^19.0.0",
"strip-ansi": "^7.1.2"
}
}