Files
octoturge 401c65762b Fix bun-types resolution; fix possibly-undefined health-check row
Same bun-types-vs-@types/bun fix as continuum-common. Also fixes a real
noUncheckedIndexedAccess violation in the /health route: db.execute()'s
result is T[], so rows[0] is 'T | undefined', not T — destructuring assumed
it always existed. Verified with a clean 'bunx tsc --noEmit'.
2026-08-28 18:28:06 +00:00

33 lines
849 B
JSON

{
"name": "@continuum/backend",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "bun run --watch src/index.ts",
"start": "bun run src/index.ts",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:studio": "drizzle-kit studio",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"elysia": "^1.1.26",
"@elysiajs/cors": "^1.1.1",
"@elysiajs/jwt": "^1.1.1",
"@elysiajs/swagger": "^1.1.6",
"@aws-sdk/client-s3": "^3.658.1",
"@aws-sdk/s3-request-presigner": "^3.658.1",
"drizzle-orm": "^0.33.0",
"drizzle-typebox": "^0.2.1",
"@sinclair/typebox": "^0.33.12",
"postgres": "^3.4.4",
"ioredis": "^5.4.1"
},
"devDependencies": {
"drizzle-kit": "^0.24.2",
"bun-types": "^1.1.10",
"typescript": "^5.6.2"
}
}