drones/package.json
maverick 63393c052f CritterScope: 3D drone wildlife survey dashboard
- Hono Worker + MapLibre GL 3D terrain map (satellite + Terrarium DEM, no API key)
- Deterministic survey simulator: lawnmower flight + georeferenced detections
- Species markers, flight path, timeline scrubber, confidence + type filters
- D1 schema + POST /api/ingest for real drone data feeding the same dashboard

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-07-21 21:10:21 +10:00

19 lines
514 B
JSON

{
"name": "critterscope",
"version": "0.1.0",
"description": "Thermal/RGB drone survey → georeferenced animal detections on a 3D map",
"private": true,
"type": "module",
"scripts": {
"dev": "wrangler dev",
"deploy": "wrangler deploy",
"db:init": "wrangler d1 execute critterscope --file=schema.sql",
"db:init:local": "wrangler d1 execute critterscope --local --file=schema.sql"
},
"dependencies": {
"hono": "^4.6.3"
},
"devDependencies": {
"wrangler": "^3.80.0"
}
}