-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1009 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 1009 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
{
"name": "cloudburrow",
"module": "index.ts",
"type": "module",
"devDependencies": {
"@types/bun": "latest",
"wrangler": "^4.45.1"
},
"dependencies": {
"chalk": "^5",
"hono": "^4.6.9",
"mcp-lite": "^0.2.0"
},
"peerDependencies": {
"typescript": "^5"
},
"scripts": {
"dev:worker": "bun x wrangler dev --config worker/wrangler.jsonc",
"deploy:worker": "bun x wrangler deploy --config worker/wrangler.jsonc",
"tunnel": "bun desktop-helper.ts",
"mcp:test": "bun scripts/test-mcp.ts",
"mcp:test:full": "bun scripts/test-mcp.ts --create --revoke",
"cf:secret:api-token": "bun x wrangler secret put CF_API_TOKEN --config worker/wrangler.jsonc",
"cf:secret:account-id": "bun x wrangler secret put CF_ACCOUNT_ID --config worker/wrangler.jsonc",
"cf:secret:zone-id": "bun x wrangler secret put CF_ZONE_ID --config worker/wrangler.jsonc",
"cf:secret:broker-key": "bun x wrangler secret put BROKER_KEY --config worker/wrangler.jsonc"
}
}