-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 917 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 917 Bytes
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
{
"name": "cli-agent",
"module": "index.ts",
"type": "module",
"private": true,
"bin": {
"cli-agent": "dist/cli/index.js"
},
"scripts": {
"dev": "CLI_AGENT_DEV_RESTART_DAEMON=1 CLI_AGENT_DAEMON_CMD=\"bun run src/daemon/index.ts\" CLI_AGENT_TUI_CMD=\"bun run src/tui/index.tsx\" bun run src/cli/index.ts",
"dev:daemon": "bun run src/daemon/index.ts",
"build": "tsc -p tsconfig.build.json",
"start": "node dist/cli/index.js",
"daemon": "node dist/daemon/index.js",
"tui": "bun run src/tui/index.tsx",
"tui:node": "node dist/tui/index.js"
},
"dependencies": {
"@opentui/core": "0.1.74",
"@opentui/react": "0.1.74",
"openai": "6.16.0",
"react": "19.2.3",
"zod": "3.23.8"
},
"devDependencies": {
"@biomejs/biome": "2.3.11",
"@types/bun": "latest",
"@types/node": "25.0.9",
"@types/react": "^19.2.8",
"typescript": "5.9.3"
},
"peerDependencies": {
"typescript": "^5"
}
}