| 12345678910111213141516171819202122232425262728293031 |
- {
- "name": "@briven/runtime",
- "version": "0.0.0",
- "private": true,
- "description": "Customer function runtime host — deno isolate pool with a Bun/Hono bridge",
- "type": "module",
- "main": "src/index.ts",
- "scripts": {
- "dev": "bun run --watch src/index.ts",
- "start": "bun run src/index.ts",
- "build": "echo 'runtime: no build step — bun runs TS directly'",
- "lint": "eslint . --max-warnings 0",
- "typecheck": "tsc --noEmit",
- "test": "bun test src tests/metrics-endpoint.test.ts",
- "test:integration": "bun test tests/integration"
- },
- "dependencies": {
- "@briven/config": "workspace:*",
- "@briven/schema": "workspace:*",
- "@briven/shared": "workspace:*",
- "hono": "^4.11.22",
- "ioredis": "^5.10.1",
- "pg": "^8.13.0",
- "zod": "^4.3.6"
- },
- "devDependencies": {
- "@types/pg": "^8.11.0",
- "bun-types": "^1.3.13",
- "typescript": "^6.0.3"
- }
- }
|