mirror of
https://github.com/svemagie/indiekit-endpoint-activitypub.git
synced 2026-04-02 15:44:58 +02:00
Remove the quick-reply code path entirely — all replies now go through Micropub as blog posts. Quick replies created orphan URLs that served raw JSON-LD to browsers and caused unreadable links in conversations. - Delete quick-reply controller (note-object.js) and route - Remove ap_notes collection registration - Simplify compose form: no mode toggle, no character counter - Remove quick-reply CSS and locale strings Confab-Link: http://localhost:8080/sessions/d116ad5b-ef8a-424e-9ebe-76c06bef1df6
57 lines
1.3 KiB
JSON
57 lines
1.3 KiB
JSON
{
|
|
"name": "@rmdes/indiekit-endpoint-activitypub",
|
|
"version": "2.7.0",
|
|
"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"
|
|
}
|
|
}
|