Files
indiekit-endpoint-microsub/package.json
Ricardo 1182b8ae79 feat: Feed management with status tracking, edit, and rediscover
- Integrate updateFeedStatus into polling processor for health tracking
- Add feed management UI showing status (active/error), errors, actions
- Add edit feed URL feature to change non-RSS URLs to actual feeds
- Add rediscover feature to run feed discovery and update URL
- Add refresh button to force immediate poll
- Update UI to use Indiekit's badge/button classes (badge--green/red, button--warning)
- Add routes: /feeds/:feedId/edit, /feeds/:feedId/rediscover, /feeds/:feedId/refresh

Fixes broken feeds by allowing users to:
1. Edit URL directly to the RSS/Atom feed
2. Click "Rediscover" to auto-find the feed from a blog URL
3. View error details and consecutive error counts

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-07 01:47:07 +01:00

55 lines
1.3 KiB
JSON

{
"name": "@rmdes/indiekit-endpoint-microsub",
"version": "1.0.24",
"description": "Microsub endpoint for Indiekit. Enables subscribing to feeds and reading content using the Microsub protocol.",
"keywords": [
"indiekit",
"indiekit-plugin",
"indieweb",
"microsub",
"reader",
"social-reader"
],
"homepage": "https://github.com/rmdes/indiekit-endpoint-microsub",
"author": {
"name": "Ricardo Mendes",
"url": "https://rmendes.net"
},
"license": "MIT",
"engines": {
"node": ">=20"
},
"type": "module",
"main": "index.js",
"files": [
"assets",
"lib",
"locales",
"views",
"index.js"
],
"bugs": {
"url": "https://github.com/rmdes/indiekit-endpoint-microsub/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/rmdes/indiekit-endpoint-microsub.git"
},
"dependencies": {
"@indiekit/error": "^1.0.0-beta.25",
"@indiekit/frontend": "^1.0.0-beta.25",
"@indiekit/util": "^1.0.0-beta.25",
"debug": "^4.3.2",
"express": "^5.0.0",
"feedparser": "^2.2.10",
"htmlparser2": "^9.0.0",
"ioredis": "^5.3.0",
"luxon": "^3.4.0",
"microformats-parser": "^2.0.0",
"sanitize-html": "^2.11.0"
},
"publishConfig": {
"access": "public"
}
}