-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 729 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 729 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
{
"name": "openclaw-foundry",
"version": "4.0.0",
"description": "AI-driven universal Agent deployment — 13 platforms, one Blueprint",
"type": "module",
"scripts": {
"ocf": "tsx src/cli.ts",
"server": "tsx src/server.ts",
"build": "tsc",
"dev": "tsx watch src/server.ts"
},
"bin": {
"ocf": "./dist/cli.js"
},
"dependencies": {
"@google/generative-ai": "^0.24.0",
"@inquirer/prompts": "^7.0.0",
"chalk": "^5.4.0",
"commander": "^13.0.0",
"execa": "^9.5.0",
"express": "^4.21.0",
"ora": "^8.2.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.0.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0"
}
}