drones/pipeline/package.json
maverick 328b3c53df Add drone ingest pipeline + local D1 dev config
- pipeline/: DJI SRT telemetry parser, ffmpeg frame extraction, detector
  interface (stub + ONNX hook), pinhole/flat-ground georeferencer, ingest client
- Verified end-to-end: synthetic flight → 319 georeferenced detections → D1 → dashboard
- wrangler.dev.toml enables local D1 (live deploy stays simulator-only until D1 token)

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

15 lines
463 B
JSON

{
"name": "critterscope-pipeline",
"version": "0.1.0",
"description": "Drone footage + telemetry → georeferenced detections → CritterScope",
"private": true,
"type": "module",
"bin": { "critterscope-ingest": "src/run.js" },
"scripts": {
"demo": "node src/run.js --synthetic --dry-run",
"demo:ingest": "node src/run.js --synthetic --base-url http://localhost:8787"
},
"optionalDependencies": {
"onnxruntime-node": "^1.19.0"
}
}