SPB Git

spb/earth-now Public License

earth-now.co — real-time planetary dashboard: live world metrics modeled, not streamed.

TypeScript 93% Shell 2.3% SQL 1.4% JavaScript 1.3% Dockerfile 1.2% CSS 0.8%
854 B · 30 lines json
Raw Blame History
1{2  "name": "@earth-now/ingest",3  "version": "0.1.0",4  "private": true,5  "type": "module",6  "description": "Ingestion workers — source fetchers/parsers, raw archiving, cron + BullMQ scheduling",7  "author": "Simon-Pierre Boucher <contact@spboucher.ai>",8  "scripts": {9    "dev": "tsx watch src/index.ts",10    "build": "tsc -p tsconfig.json",11    "test": "vitest run",12    "typecheck": "tsc -p tsconfig.json --noEmit",13    "lint": "echo 'lint: covered by root header check'",14    "run:source": "tsx src/run-source.ts"15  },16  "dependencies": {17    "@earth-now/counter": "workspace:*",18    "@earth-now/models": "workspace:*",19    "@earth-now/registry": "workspace:*",20    "bullmq": "^5.12.0",21    "ioredis": "^5.4.1"22  },23  "devDependencies": {24    "@types/node": "^20",25    "tsx": "^4.19.0",26    "typescript": "^5.5.4",27    "vitest": "^2.0.5"28  }29}30