-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.13 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 2.13 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
{
"name": "nimbus-monorepo",
"version": "0.1.0",
"description": "Free and open-source Cloudflare Worker sandbox runtime for browser dev environments and programmatic code execution.",
"private": true,
"license": "MIT",
"homepage": "https://github.com/AshishKumar4/Nimbus",
"repository": {
"type": "git",
"url": "git+https://github.com/AshishKumar4/Nimbus.git"
},
"bugs": "https://github.com/AshishKumar4/Nimbus/issues",
"keywords": [
"cloudflare",
"workers",
"durable-objects",
"sandbox",
"developer-environment",
"webassembly",
"code-execution",
"open-source"
],
"type": "module",
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"bundle": "bun run --cwd packages/worker bundle",
"predev": "bun run bundle",
"dev": "bun run --cwd apps/hosted-demo dev",
"deploy": "bun run --cwd apps/hosted-demo deploy",
"deploy:production": "bun run --cwd apps/hosted-demo deploy:production",
"staging:deploy": "bun tests/behavioral/_staging-target.mjs up",
"staging:test": "bun tests/behavioral/_staging-target.mjs test",
"staging:status": "bun tests/behavioral/_staging-target.mjs status",
"lint": "./node_modules/.bin/biome lint",
"typecheck": "./node_modules/.bin/tsc --noEmit",
"test:behavioral": "bun tests/behavioral/run-all.mjs",
"postinstall": "node packages/worker/scripts/patch-install-deps.mjs && node packages/worker/scripts/bundle-git.mjs && node packages/worker/scripts/bundle-facet-workers.mjs && node packages/worker/scripts/bundle-esbuild-wasm.mjs && node packages/worker/scripts/bundle-sqlite-wasm.mjs && node packages/worker/scripts/bundle-node-shims.mjs && node packages/worker/scripts/bundle-tailwind-play.mjs && node packages/worker/scripts/bundle-agent-chat.mjs"
},
"dependencies": {},
"devDependencies": {
"@biomejs/biome": "2.3.7",
"@cloudflare/workers-types": "^4.20250327.0",
"agents": "0.20.1",
"esbuild": "^0.27.0",
"partyserver": "^0.5.10",
"puppeteer": "^24.43.0",
"puppeteer-core": "^24.42.0",
"typescript": "^5.7.0",
"wabt": "^1.0.39",
"wrangler": "^4.0.0",
"zod": "^4.4.3"
}
}