Files
indiekit-endpoint-youtube/package.json
Ricardo 43090ce8af fix: dashboard controller support for multi-channel mode
The Indiekit backend UI was broken when using channels array
because the dashboard controller only checked for channelId/channelHandle.

Now uses getPrimaryChannel() helper to extract the first channel
from either single-channel or multi-channel configuration.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-24 13:59:25 +01:00

53 lines
1.1 KiB
JSON

{
"name": "@rmdes/indiekit-endpoint-youtube",
"version": "1.1.1",
"description": "YouTube channel endpoint for Indiekit. Display latest videos and live status from any YouTube channel.",
"keywords": [
"indiekit",
"indiekit-plugin",
"indieweb",
"youtube",
"videos",
"live",
"streaming"
],
"homepage": "https://github.com/rmdes/indiekit-endpoint-youtube",
"bugs": {
"url": "https://github.com/rmdes/indiekit-endpoint-youtube/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rmdes/indiekit-endpoint-youtube.git"
},
"author": {
"name": "Ricardo Mendes",
"url": "https://rmendes.net"
},
"license": "MIT",
"engines": {
"node": ">=20"
},
"type": "module",
"main": "index.js",
"exports": {
".": "./index.js"
},
"files": [
"includes",
"lib",
"locales",
"views",
"index.js"
],
"dependencies": {
"@indiekit/error": "^1.0.0-beta.25",
"express": "^5.0.0"
},
"peerDependencies": {
"@indiekit/indiekit": ">=1.0.0-beta.25"
},
"publishConfig": {
"access": "public"
}
}