-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.35 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
{
"name": "@openclaw-wrapper/adapter",
"version": "0.0.0",
"private": true,
"type": "module",
"main": "./dist/server.js",
"exports": {
".": "./src/server.ts",
"./router": "./src/routers/index.ts"
},
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "tsc -p tsconfig.json",
"start": "node dist/server.js",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run --passWithNoTests",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"clean": "rm -rf dist .turbo"
},
"dependencies": {
"@fastify/cors": "^11.2.0",
"@openclaw-wrapper/memory-sdk": "workspace:*",
"@openclaw-wrapper/node-sdk": "workspace:*",
"@openclaw-wrapper/openclaw-client": "workspace:*",
"@openclaw-wrapper/schemas": "workspace:*",
"@sinclair/typebox": "^0.34.9",
"@trpc/server": "^11.18.0",
"bullmq": "^5.79.1",
"drizzle-orm": "^0.45.2",
"fastify": "^5.2.0",
"ioredis": "^5.11.1",
"pino": "^10.3.1",
"postgres": "^3.4.5",
"ws": "^8.21.0"
},
"devDependencies": {
"@openclaw-wrapper/tsconfig": "workspace:*",
"@types/node": "^25.6.0",
"@types/ws": "^8.5.13",
"drizzle-kit": "^0.31.10",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
}
}