A stream.place VOD client inspired by icarly.com
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 29 lines 670 B view raw
1{ 2 "name": "streamplacevod", 3 "version": "0.1.0", 4 "private": true, 5 "scripts": { 6 "dev": "next dev", 7 "build": "next build", 8 "start": "next start", 9 "lint": "eslint", 10 "test:api": "npx tsx scripts/test-vod-chain.ts", 11 "test:cli": "./scripts/test-playback-cli.sh" 12 }, 13 "dependencies": { 14 "@atproto/lexicon": "^0.6.2", 15 "@atproto/xrpc": "^0.7.7", 16 "hls.js": "^1.6.15", 17 "next": "16.2.1", 18 "react": "19.2.4", 19 "react-dom": "19.2.4" 20 }, 21 "devDependencies": { 22 "@types/node": "^20", 23 "@types/react": "^19", 24 "@types/react-dom": "^19", 25 "eslint": "^9", 26 "eslint-config-next": "16.2.1", 27 "typescript": "^5" 28 } 29}