baa-conductor


baa-conductor / apps / codexd
im_wower  ·  2026-03-22

package.json

 1{
 2  "name": "@baa-conductor/codexd",
 3  "private": true,
 4  "type": "module",
 5  "main": "dist/index.js",
 6  "exports": {
 7    ".": "./dist/index.js"
 8  },
 9  "scripts": {
10    "build": "pnpm exec tsc -p tsconfig.json && BAA_DIST_DIR=apps/codexd/dist BAA_DIST_ENTRY=apps/codexd/src/index.js BAA_FIX_RELATIVE_EXTENSIONS=true pnpm -C ../.. run build:runtime-postprocess",
11    "typecheck": "pnpm exec tsc --noEmit -p tsconfig.json",
12    "start": "pnpm run build && node dist/index.js start",
13    "status": "pnpm run build && node dist/index.js status --json",
14    "test": "pnpm run build && node --test src/index.test.js",
15    "smoke": "pnpm run build && node dist/index.js smoke"
16  }
17}