aeStatusPage/package.json
jmcqueen 007086caf6 Initial commit: status-page bridge with Webex bot management
Bridges third-party status pages into Webex spaces via RSS polling and
inbound webhooks (Statuspage / Status.io / Uptime Kuma / generic).

Includes an interactive Webex bot (websocket transport) that lets space
members register sources with an Adaptive Card instead of hand-editing
config/feeds.json: help, add, list, webhook <key>, remove <key>.

Ships with an atomic JSON store (per-file mutex, tmp+rename), parallel
RSS polling, and unit tests via node:test. All secrets are sourced from
environment variables (see .env.example); no credentials in the repo.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-08 16:08:34 -04:00

25 lines
516 B
JSON

{
"name": "aerss",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "node --test 'test/**/*.test.js'"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"engines": {
"node": "20.x"
},
"dependencies": {
"@rowanmanning/feed-parser": "^1.0.1",
"body-parser": "^1.20.2",
"express": "^4.19.2",
"node-cron": "^3.0.3",
"node-fetch": "^3.3.2",
"webex-node-bot-framework": "^2.5.1"
}
}