-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1017 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 1017 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
{
"name": "cloudflare-billing-kill-switch",
"version": "1.0.0",
"description": "Auto-disconnect runaway Cloudflare Workers before they generate surprise bills. Born from an $80K Durable Objects bill.",
"keywords": [
"cloudflare",
"workers",
"billing",
"kill-switch",
"cost-protection",
"durable-objects",
"monitoring"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/AiExpanse/cloudflare-billing-kill-switch"
},
"scripts": {
"dev": "wrangler dev",
"deploy": "wrangler deploy",
"check": "curl -s https://cloudflare-billing-kill-switch.<your-subdomain>.workers.dev/check | jq",
"usage": "curl -s https://cloudflare-billing-kill-switch.<your-subdomain>.workers.dev/usage | jq",
"test-alert": "curl -s https://cloudflare-billing-kill-switch.<your-subdomain>.workers.dev/test-alert | jq"
},
"devDependencies": {
"wrangler": "^4.0.0",
"typescript": "^5.0.0",
"@cloudflare/workers-types": "^4.0.0"
}
}