im_wower
·
2026-03-22
package.json
1{
2 "name": "@baa-conductor/host-ops",
3 "private": true,
4 "type": "module",
5 "main": "dist/index.js",
6 "exports": {
7 ".": "./dist/index.js"
8 },
9 "types": "dist/index.d.ts",
10 "scripts": {
11 "build": "pnpm exec tsc -p tsconfig.json",
12 "typecheck": "pnpm exec tsc --noEmit -p tsconfig.json",
13 "test": "pnpm run build && node --test --experimental-strip-types src/index.test.js",
14 "smoke": "pnpm run test"
15 }
16}