package.json 910 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "@briven/runtime",
  3. "version": "0.0.0",
  4. "private": true,
  5. "description": "Customer function runtime host — deno isolate pool with a Bun/Hono bridge",
  6. "type": "module",
  7. "main": "src/index.ts",
  8. "scripts": {
  9. "dev": "bun run --watch src/index.ts",
  10. "start": "bun run src/index.ts",
  11. "build": "echo 'runtime: no build step — bun runs TS directly'",
  12. "lint": "eslint . --max-warnings 0",
  13. "typecheck": "tsc --noEmit",
  14. "test": "bun test src tests/metrics-endpoint.test.ts",
  15. "test:integration": "bun test tests/integration"
  16. },
  17. "dependencies": {
  18. "@briven/config": "workspace:*",
  19. "@briven/schema": "workspace:*",
  20. "@briven/shared": "workspace:*",
  21. "hono": "^4.11.22",
  22. "ioredis": "^5.10.1",
  23. "pg": "^8.13.0",
  24. "zod": "^4.3.6"
  25. },
  26. "devDependencies": {
  27. "@types/pg": "^8.11.0",
  28. "bun-types": "^1.3.13",
  29. "typescript": "^6.0.3"
  30. }
  31. }