- Implement main.js for the master display functionality, including WebSocket connection, audio output management, and state handling. - Create style.css for the master display's visual design, ensuring a cohesive look and feel with a dark theme and responsive layout. - Integrate device management with a fallback for non-Electron environments, allowing users to select audio outputs. - Add features for managing favorites, including toggling favorites and filtering by genre. - Enhance user experience with a responsive favorites grid and drag-to-scroll functionality.
30 lines
931 B
JSON
30 lines
931 B
JSON
{
|
|
"name": "online-radio-explorer",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"description": "Touchscreen kiosk + admin for exploring and playing internet radio.",
|
|
"scripts": {
|
|
"dev": "concurrently -k -n web,api -c blue,green \"npm:dev:web\" \"npm:dev:api\"",
|
|
"dev:web": "vite",
|
|
"dev:api": "node --watch server/index.js",
|
|
"build": "vite build",
|
|
"start": "node server/index.js",
|
|
"seed": "node server/scripts/seed.js",
|
|
"images:fetch": "node server/scripts/download-images.js"
|
|
},
|
|
"dependencies": {
|
|
"bcryptjs": "^2.4.3",
|
|
"better-sqlite3": "^11.3.0",
|
|
"cookie": "^1.0.1",
|
|
"dotenv": "^16.4.5",
|
|
"express": "^4.21.0",
|
|
"node-cron": "^3.0.3",
|
|
"ws": "^8.18.0"
|
|
},
|
|
"devDependencies": {
|
|
"concurrently": "^9.0.1",
|
|
"hls.js": "^1.5.17",
|
|
"vite": "^5.4.8"
|
|
}
|
|
} |