mirror of
https://github.com/svemagie/indiekit-endpoint-activitypub.git
synced 2026-04-02 15:44:58 +02:00
- Upgrade @fedify/fedify, @fedify/redis to ^2.0.0 - Add @fedify/debugger ^2.0.0 for live federation traffic dashboard - Move all vocab type imports to @fedify/fedify/vocab (13 files) - Move crypto imports (exportJwk, importJwk, generateCryptoKeyPair) to @fedify/fedify/sig - Replace removed importSpki() with local Web Crypto API helper - Add KvStore.list() async generator required by Fedify 2.0 - Add setOutboxPermanentFailureHandler for delivery failure logging - Add debugDashboard/debugPassword config options - Skip manual LogTape configure when debugger auto-configures it - Fix Express-Fedify bridge to reconstruct body from req.body when Express body parser has already consumed the stream (fixes debug dashboard login TypeError) - Add response.bodyUsed safety check in sendFedifyResponse - Remove @fedify/express dependency (custom bridge handles sub-path mounting)
57 lines
1.3 KiB
JSON
57 lines
1.3 KiB
JSON
{
|
|
"name": "@rmdes/indiekit-endpoint-activitypub",
|
|
"version": "2.0.1",
|
|
"description": "ActivityPub federation endpoint for Indiekit via Fedify. Adds full fediverse support: actor, inbox, outbox, followers, following, syndication, and Mastodon migration.",
|
|
"keywords": [
|
|
"indiekit",
|
|
"indiekit-plugin",
|
|
"indieweb",
|
|
"activitypub",
|
|
"fediverse",
|
|
"federation",
|
|
"fedify"
|
|
],
|
|
"author": {
|
|
"name": "Ricardo Mendes",
|
|
"url": "https://rmendes.net"
|
|
},
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": ">=22"
|
|
},
|
|
"type": "module",
|
|
"main": "index.js",
|
|
"exports": "./index.js",
|
|
"files": [
|
|
"assets",
|
|
"lib",
|
|
"locales",
|
|
"views",
|
|
"index.js"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/rmdes/indiekit-endpoint-activitypub"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/rmdes/indiekit-endpoint-activitypub/issues"
|
|
},
|
|
"dependencies": {
|
|
"@fedify/debugger": "^2.0.0",
|
|
"@fedify/fedify": "^2.0.0",
|
|
"@fedify/redis": "^2.0.0",
|
|
"@js-temporal/polyfill": "^0.5.0",
|
|
"express": "^5.0.0",
|
|
"ioredis": "^5.9.3",
|
|
"sanitize-html": "^2.13.1",
|
|
"unfurl.js": "^6.4.0"
|
|
},
|
|
"peerDependencies": {
|
|
"@indiekit/error": "^1.0.0-beta.25",
|
|
"@indiekit/frontend": "^1.0.0-beta.25"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|