-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 913 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 913 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
32
33
34
35
36
37
{
"name": "cloudx-sh",
"version": "1.0.0",
"description": "Launch any GitHub repo as an AI-powered development environment using Cloudflare Sandbox and OpenCode with Claude Opus 4.5",
"type": "module",
"main": "src/index.ts",
"scripts": {
"dev": "wrangler dev",
"deploy": "wrangler deploy",
"tail": "wrangler tail",
"typecheck": "bun build --no-emit src/index.ts",
"format": "bunx oxlint@latest --fix src/",
"lint": "bunx oxlint@latest src/"
},
"keywords": [
"cloudflare",
"workers",
"github",
"sandbox",
"opencode",
"claude",
"ai"
],
"author": "",
"license": "GPL-3.0",
"devDependencies": {
"@cloudflare/workers-types": "latest",
"@types/bun": "latest",
"@types/node": "latest",
"oxlint": "^1.34.0",
"typescript": "latest",
"wrangler": "latest"
},
"dependencies": {
"@cloudflare/sandbox": "^0.6.7"
}
}