A separate, lightweight companion app: add any podsteadr server's URL, browse its catalog and feeds, play free episodes directly, and buy priced ones (NIP-07 signing, Lightning invoice + QR, then playback via the paywall-gated download-url endpoint). No backend of its own — pure static SPA, fetches other podsteadr instances directly. Dark glassmorphism theme matching Archipelago's own dashboard (dark background, translucent blurred panels, orange accent). Vite's base path is configurable via VITE_BASE (build arg / .env, not hardcoded) so the same image can be deployed either at a dedicated port's root (no reverse-proxy prefix) or under a subpath behind a shared HTTPS domain, depending on the host. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
26 lines
542 B
JSON
26 lines
542 B
JSON
{
|
|
"name": "podsteadr-player",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vue-tsc -p tsconfig.json && vite build",
|
|
"preview": "vite preview"
|
|
},
|
|
"dependencies": {
|
|
"qrcode": "^1.5.4",
|
|
"vue": "^3.5.0"
|
|
},
|
|
"devDependencies": {
|
|
"@vitejs/plugin-vue": "^6.0.0",
|
|
"@types/qrcode": "^1.5.5",
|
|
"autoprefixer": "^10.4.20",
|
|
"postcss": "^8.5.0",
|
|
"tailwindcss": "^3.4.0",
|
|
"typescript": "^5.9.0",
|
|
"vite": "^7.2.0",
|
|
"vue-tsc": "^3.1.0"
|
|
}
|
|
}
|