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%
841 B · 32 lines json
Raw Blame History
1{2  "name": "@earth-now/models",3  "version": "0.1.0",4  "private": true,5  "type": "module",6  "description": "Pure statistical fitting, interpolation and validation — no I/O, time is always a parameter",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  },26  "devDependencies": {27    "fast-check": "^3.22.0",28    "typescript": "^5.5.4",29    "vitest": "^2.0.5"30  }31}32