Merge branch 'staging' into feat/plan-editor

This commit is contained in:
John Yeo
2025-10-10 09:25:30 +01:00

View File

@@ -13,13 +13,9 @@
"author": "Recase Inc.",
"license": "Apache-2.0",
"scripts": {
"tsc": "tsc",
"api": "bun api/openapi.ts",
"build": "bun build ./index.ts --outdir dist --format esm --target bun --external zod",
"dev": "bunx nodemon --ext ts --ignore dist --exec \"tsc --emitDeclarationOnly --outDir dist && bun run build:fast\"",
"dev:dts": "tsc --emitDeclarationOnly --outDir dist --project tsconfig.json",
"build:fast": "bun build ./index.ts --outdir dist --format esm --target bun --external zod",
"dev:bun": "bun ./index.ts --outdir dist --target bun --external zod --watch",
"build": "tsc --emitDeclarationOnly --outDir dist && bun build ./index.ts --outdir dist --format esm --target bun --external zod",
"dev": "bunx nodemon --ext ts --ignore dist --exec \"tsc --emitDeclarationOnly --outDir dist && bun build ./index.ts --outdir dist --format esm --target bun --external zod\"",
"db:push": "bun db:generate && bun db:migrate",
"db:generate": "cross-env NODE_OPTIONS=\"--import tsx\" bunx drizzle-kit generate --config drizzle.config.ts",
"db:migrate": "cross-env NODE_OPTIONS=\"--import tsx\" bunx drizzle-kit migrate --config drizzle.config.ts",