-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.51 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.51 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "clawhive",
"private": true,
"version": "0.1.0",
"description": "Multi-user deployment layer for OpenClaw — identity, routing, security, and governance",
"license": "MIT",
"keywords": [
"openclaw",
"router",
"multi-tenant",
"hono",
"typescript",
"slack",
"telegram"
],
"author": "ClawHive contributors",
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsup src/index.ts --format esm --dts --clean",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"migrate": "tsx scripts/migrate.ts",
"bootstrap": "tsx scripts/bootstrap.ts",
"lint": "eslint . && npm run typecheck",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"engines": {
"node": ">=22.0.0"
},
"dependencies": {
"@hono/node-server": "^1.13.8",
"dotenv": "^16.4.7",
"hono": "^4.11.10",
"jose": "^6.0.8",
"nanoid": "^5.0.9",
"pg": "^8.13.1",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0",
"ws": "^8.18.3"
},
"devDependencies": {
"@eslint/js": "^9.39.3",
"@types/node": "^22.10.5",
"@types/pg": "^8.11.10",
"@types/ws": "^8.5.13",
"eslint": "^9.39.3",
"eslint-config-prettier": "^10.1.8",
"globals": "^16.5.0",
"prettier": "^3.8.1",
"tsup": "^8.3.6",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.56.1",
"vitest": "^3.0.5"
}
}