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%
928 B · 35 lines json
Raw Blame History
1{2  "name": "@earth-now/registry",3  "version": "0.1.0",4  "private": true,5  "type": "module",6  "description": "Metric & source registry (YAML, product source of truth) + fixtures + model fitting orchestration",7  "author": "Simon-Pierre Boucher <contact@spboucher.ai>",8  "exports": {9    ".": {10      "types": "./dist/index.d.ts",11      "import": "./dist/index.js"12    }13  },14  "main": "./dist/index.js",15  "types": "./dist/index.d.ts",16  "scripts": {17    "build": "tsc -p tsconfig.json",18    "dev": "tsc -p tsconfig.json --watch",19    "test": "vitest run",20    "typecheck": "tsc -p tsconfig.json --noEmit",21    "lint": "echo 'lint: covered by root header check'"22  },23  "dependencies": {24    "@earth-now/counter": "workspace:*",25    "@earth-now/models": "workspace:*",26    "yaml": "^2.5.0",27    "zod": "^3.23.8"28  },29  "devDependencies": {30    "@types/node": "^20",31    "typescript": "^5.5.4",32    "vitest": "^2.0.5"33  }34}35