forked from cloudflare/moltworker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.37 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.37 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
{
"name": "moltbot-sandbox",
"version": "1.0.0",
"type": "module",
"private": true,
"description": "Run Moltbot personal AI assistant in a Cloudflare Sandbox",
"scripts": {
"build": "vite build",
"deploy": "npm run build && wrangler deploy",
"dev": "vite dev",
"start": "wrangler dev",
"types": "wrangler types",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@cloudflare/puppeteer": "^1.0.5",
"hono": "^4.11.6",
"jose": "^6.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@cloudflare/sandbox": "*",
"@cloudflare/vite-plugin": "^1.0.0",
"@cloudflare/workers-types": "^4.20250109.0",
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.3.0",
"@vitest/coverage-v8": "^4.0.18",
"typescript": "^5.9.3",
"vite": "^6.0.0",
"vitest": "^4.0.18",
"wrangler": "^4.50.0"
},
"author": "",
"license": "Apache-2.0",
"cloudflare": {
"bindings": {
"ANTHROPIC_API_KEY": {
"description": "Your [Anthropic API key](https://console.anthropic.com/)."
},
"MOLTBOT_GATEWAY_TOKEN": {
"description": "Token for gateway access. Generate with: openssl rand -hex 32"
}
}
}
}