mirror of
https://github.com/tiennm99/claude-status-webhook.git
synced 2026-04-17 11:20:30 +00:00
- Statuspage webhook always returns 200 to prevent subscriber removal - Fix parseKvKey returning string chatId instead of number - Queue consumer retries on Telegram 5xx instead of acking (prevents message loss) - Fix observability top-level enabled flag (false → true) - Add defensive null checks for webhook payload body - Cache Bot instance per isolate to avoid middleware rebuild per request - Add vitest + @cloudflare/vitest-pool-workers with 31 tests - Document DLQ and KV sharding as declined features
34 lines
896 B
JSON
34 lines
896 B
JSON
{
|
|
"name": "claude-status-webhook",
|
|
"version": "1.0.0",
|
|
"description": "[Claude Status](https://status.claude.com/)'s webhook for Telegram bot. Hosted on Cloudflare Workers",
|
|
"main": "src/index.js",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "wrangler dev",
|
|
"deploy": "wrangler deploy",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/tiennm99/claude-status-webhook.git"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "Apache-2.0",
|
|
"bugs": {
|
|
"url": "https://github.com/tiennm99/claude-status-webhook/issues"
|
|
},
|
|
"homepage": "https://github.com/tiennm99/claude-status-webhook#readme",
|
|
"dependencies": {
|
|
"grammy": "^1.42.0",
|
|
"hono": "^4.12.12"
|
|
},
|
|
"devDependencies": {
|
|
"@cloudflare/vitest-pool-workers": "^0.14.2",
|
|
"vitest": "^4.1.3",
|
|
"wrangler": "^4.81.0"
|
|
}
|
|
}
|