-
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.22 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.22 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": "moltopia",
"version": "0.1.0",
"description": "Token-efficient virtual world for OpenClaw AI agents",
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"db:generate": "drizzle-kit generate",
"db:migrate": "tsx src/db/migrate.ts",
"db:seed": "tsx src/db/seed.ts",
"db:studio": "drizzle-kit studio",
"test": "vitest",
"test:integration": "vitest --config vitest.integration.config.ts",
"test:e2e": "tsx scripts/simulate-agent.ts",
"measure:tokens": "tsx scripts/measure-tokens.ts"
},
"keywords": [
"ai",
"virtual-world",
"openclaw",
"agents"
],
"author": "",
"license": "MIT",
"dependencies": {
"@hono/node-server": "^1.13.7",
"dotenv": "^16.4.7",
"drizzle-orm": "^0.38.3",
"hono": "^4.6.14",
"js-tiktoken": "^1.0.15",
"jsonwebtoken": "^9.0.2",
"postgres": "^3.4.5",
"redis": "^4.7.0",
"ws": "^8.19.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^22.10.7",
"@types/ws": "^8.18.1",
"drizzle-kit": "^0.30.0",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vitest": "^2.1.8"
}
}