-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 743 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 743 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
{
"name": "codeplanner-cli",
"version": "0.1.0",
"description": "AI-powered code planning and error analysis CLI tool",
"private": true,
"workspaces": ["packages/*"],
"scripts": {
"dev:cli": "bun --watch packages/cli/src/index.ts",
"dev:gateway": "bun --watch packages/gateway/src/server.ts",
"dev:worker": "bun --watch packages/engine/src/worker.ts",
"build": "bun build:cli && bun build:gateway && bun build:engine",
"cli": "bun packages/cli/src/index.ts",
"test:flow": "bash test-flow.sh",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.0.0"
},
"engines": {
"bun": ">=1.0.0"
}
}