-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 920 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 920 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "openclaw-observatory",
"version": "1.0.0",
"type": "module",
"description": "Self-hosted observability platform for Clawdbot/OpenClaw agents",
"main": "dist/index.js",
"scripts": {
"build": "tsc && npm run build:web",
"build:server": "tsc",
"build:web": "cd web && npm run build",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"db:migrate": "tsx src/db/migrate.ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@fastify/cors": "^9.0.1",
"@fastify/static": "^7.0.4",
"@fastify/websocket": "^10.0.1",
"dotenv": "^16.4.5",
"fastify": "^4.28.1",
"pg": "^8.12.0",
"uuid": "^10.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^20.14.9",
"@types/pg": "^8.11.6",
"@types/uuid": "^10.0.0",
"tsx": "^4.16.2",
"typescript": "^5.5.3"
},
"engines": {
"node": ">=20.0.0"
}
}