Clicking a camera's snapshot pins a 192x108 tile anchored at the camera -- the live HLS stream when the camera has one (hls.js; Safari native), else the snapshot refreshed every 60s, falling back to the snapshot if the stream dies. Up to 6 pins, oldest dropped. Players exist only while the DOT Cameras overlay is on, so hiding it stops every stream. Co-Authored-By: Claude Opus 5.5 <noreply@anthropic.com>
32 lines
700 B
JSON
32 lines
700 B
JSON
{
|
|
"name": "drb-frontend",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"next": "^15",
|
|
"react": "^18.3.0",
|
|
"react-dom": "^18.3.0",
|
|
"firebase": "^10.12.0",
|
|
"hls.js": "^1.5.0",
|
|
"leaflet": "^1.9.4",
|
|
"react-leaflet": "^4.2.1",
|
|
"react-markdown": "^9.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.4.0",
|
|
"@types/react": "^18.3.0",
|
|
"@types/react-dom": "^18.3.0",
|
|
"@types/node": "^20.12.0",
|
|
"@types/leaflet": "^1.9.12",
|
|
"tailwindcss": "^3.4.0",
|
|
"postcss": "^8.4.0",
|
|
"autoprefixer": "^10.4.0"
|
|
}
|
|
}
|