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%
817 B · 30 lines json
Raw Blame History
1{2  "name": "@earth-now/counter",3  "version": "0.1.0",4  "private": true,5  "type": "module",6  "description": "Shared pure client/server counter runtime: value(model, t), formatting, reset windows",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": "tsc -p tsconfig.json && vitest run",20    "typecheck": "tsc -p tsconfig.json --noEmit",21    "lint": "echo 'lint: covered by root header check'"22  },23  "devDependencies": {24    "fast-check": "^3.22.0",25    "jsdom": "^30.0.1",26    "typescript": "^5.5.4",27    "vitest": "^2.0.5"28  }29}30