-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1.16 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
{
"name": "bb",
"version": "0.4.0",
"private": true,
"type": "module",
"workspaces": [
"packages/*",
"apps/*"
],
"engines": {
"node": ">=22"
},
"scripts": {
"bb": "node apps/cli/src/main.ts",
"coding-agent": "node examples/coding-agent.ts",
"host": "node apps/runtime-host/src/main.ts",
"build:cli": "node scripts/build-cli.ts",
"pack:cli": "npm pack --workspace @bb/cli --pack-destination .bb/harbor",
"test": "node --test --test-concurrency=1 tests/*.test.ts",
"test:smoke": "BB_REAL_PROVIDER_SMOKE=1 node --test tests/provider-smoke.test.ts",
"test:smoke:file": "BB_REAL_PROVIDER_SMOKE=1 BB_SMOKE_ENV_FILE=.bb/provider-keys.env node --test tests/provider-smoke.test.ts",
"audit:smoke": "node scripts/audit-smoke-receipts.ts",
"typecheck": "tsc --noEmit",
"check:boundaries": "node scripts/check-boundaries.ts",
"check:distribution": "npm run build:cli && node scripts/check-cli-package.ts",
"check": "npm run typecheck && npm test && npm run check:boundaries && npm run check:distribution"
},
"devDependencies": {
"@types/node": "^26.1.1",
"esbuild": "^0.25.9",
"typescript": "^7.0.2"
}
}