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