-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.91 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.91 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "cloudbox",
"version": "0.0.1",
"description": "Durable Cloudflare computers for agents: run repos, steer live workspaces, verify results, and return receipts.",
"private": true,
"type": "module",
"exports": {
"./client": "./src/client.ts",
"./generate-proof": "./src/generate-proof.ts",
"./agent-computer": "./src/agent-computer.ts",
"./live-run-tools": "./src/live-run-tools.ts",
"./think": "./src/think.ts"
},
"scripts": {
"build": "bun --filter @cloudbox/web build",
"dev": "node scripts/dev.mjs",
"dev:worker": "bun run build && bunx wrangler dev --local --port 8799",
"deploy": "bun run build && bunx wrangler deploy",
"alchemy:deploy": "bun run build && bun alchemy deploy --stage prod --adopt",
"destroy": "bun alchemy destroy",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"e2e": "node scripts/e2e.mjs",
"check": "bun run build && bun run typecheck && bun run test && bun run demo:fast",
"demo": "bun run build && node scripts/demo.mjs",
"demo:fast": "node scripts/demo.mjs",
"demo:browser": "bun run build && node scripts/browser-demo.mjs",
"browser:smoke": "node scripts/browser-agent-smoke.mjs",
"browser:video": "node scripts/browser-agent-video-smoke.mjs",
"stratus:smoke": "node scripts/stratus-smoke.mjs",
"runner:test": "node scripts/runner-smoke.mjs",
"runner:smoke": "node scripts/runner-smoke.mjs",
"runner:desktop-smoke": "node scripts/runner-desktop-smoke.mjs",
"proof:runner": "node scripts/proof-runner-readiness.mjs",
"proof:launch": "node scripts/proof-launch-readiness.mjs",
"proof:ci": "node scripts/proof-ci-smoke.mjs",
"proof:live-preview": "node scripts/proof-live-preview.mjs",
"proof:desktop-shell": "node scripts/proof-desktop-shell.mjs",
"live:preview": "node scripts/live-preview-session.mjs",
"live": "node scripts/cloudbox-live.mjs",
"live:sync": "node scripts/cloudbox-live-sync.mjs",
"e2e:private-repo": "node scripts/private-repo-e2e.mjs",
"proof": "bun run proof:runner && bun run proof:launch && bun run proof:ci",
"og:build": "node scripts/build-og.mjs",
"ci": "bun run check"
},
"workspaces": [
"web"
],
"dependencies": {
"@cloudflare/sandbox": "0.12.1",
"alchemy": "^0.93.7",
"better-result": "^2.7.0",
"effect": "^4.0.0-beta.58",
"hono": "^4.12.18",
"oauth4webapi": "^3.8.5",
"zod": "^4.3.6"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260430.1",
"@types/node": "^24.10.1",
"playwright": "^1.57.0",
"typescript": "^5.9.3",
"vitest": "^4.1.5",
"wrangler": "^4.86.0"
},
"engines": {
"bun": ">=1.3.0",
"node": ">=22"
},
"homepage": "https://cloudbox.coey.dev",
"repository": {
"type": "git",
"url": "git+https://github.com/acoyfellow/cloudbox.git"
},
"bugs": {
"url": "https://github.com/acoyfellow/cloudbox/issues"
},
"license": "MIT"
}