package.json27 lines · main
1{
2 "name": "@briven/realtime",
3 "version": "0.0.0",
4 "private": true,
5 "description": "WebSocket service for reactive queries — LISTEN/NOTIFY fan-out",
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 'realtime: bun runs TS directly, no build step'",
12 "lint": "eslint . --max-warnings 0",
13 "typecheck": "tsc --noEmit",
14 "test": "bun test"
15 },
16 "dependencies": {
17 "@briven/config": "workspace:*",
18 "@briven/shared": "workspace:*",
19 "pg": "^8.13.0",
20 "zod": "^4.3.6"
21 },
22 "devDependencies": {
23 "@types/pg": "^8.11.0",
24 "bun-types": "^1.3.13",
25 "typescript": "^6.0.3"
26 }
27}