-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 1.5 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
{
"name": "bands",
"version": "0.1.0",
"private": true,
"workspaces": ["packages/*"],
"scripts": {
"band": "bun packages/runtime/src/cli.ts",
"install:cli": "bun build --compile packages/runtime/src/cli.ts --outfile /usr/local/bin/band-cli",
"install:band": "bun build --compile packages/runtime/src/band-run.ts --outfile /usr/local/bin/band",
"test": "bun test --cwd packages/format && bun test --cwd packages/editor && bun run --cwd packages/runtime test",
"test:format": "bun test --cwd packages/format",
"test:editor": "bun test --cwd packages/editor",
"test:runtime": "bun run --cwd packages/runtime test",
"test:unit": "bun run --cwd packages/runtime test:unit",
"test:integration": "bun run --cwd packages/runtime test:integration",
"test:all": "bun test --cwd packages/format && bun run --cwd packages/runtime test:all",
"test:skills": "bun scripts/test-skills.ts",
"test:skills:direct": "bun scripts/test-skills.ts --direct",
"test:skills:agent": "bun scripts/test-skills.ts --agent",
"dev": "bun run --cwd packages/editor dev",
"build": "bun run build:format && bun run build:editor",
"build:format": "bun run --cwd packages/format build",
"build:editor": "bun run --cwd packages/editor build",
"typecheck": "bunx tsc --noEmit -p tsconfig.json",
"runtime:dev": "bun run --cwd packages/runtime dev",
"runtime:deploy": "bun run packages/runtime/src/cli.ts deploy"
},
"devDependencies": {
"@anthropic-ai/sdk": "^0.78.0"
}
}