{ "name": "@buster-app/server", "type": "module", "exports": { ".": { "types": "./src/index.ts" } }, "scripts": { "prebuild": "bun run scripts/validate-env.js", "build": "bun build src/index.ts --outdir ./dist --target bun --external pino-pretty", "dev": "bun --max-old-space-size=512 run --hot src/index.ts", "lint": "biome check", "prod": "pnpm run build:vercel && pnpm run start:vercel", "start": "bun dist/index.js", "test": "vitest run", "test:coverage": "vitest --coverage", "test:watch": "vitest --watch", "typecheck": "tsc --noEmit" }, "dependencies": { "@buster/access-controls": "workspace:*", "@buster/database": "workspace:*", "@buster/server-shared": "workspace:*", "@buster/slack": "workspace:*", "@buster/test-utils": "workspace:*", "@buster/typescript-config": "workspace:*", "@buster/vitest-config": "workspace:*", "@hono/zod-validator": "^0.7.0", "@supabase/supabase-js": "catalog:", "@trigger.dev/sdk": "catalog:", "drizzle-orm": "catalog:", "hono": "catalog:", "hono-pino": "^0.8.0", "pino": "^9.7.0", "pino-pretty": "^13.0.0", "zod": "catalog:" }, "devDependencies": { "@vercel/node": "^5.3.3", "tsup": "^8.5.0" } }