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%
593 B · 23 lines typescript
Raw Blame History
1/**2 * earth-now.co3 * Author:  Simon-Pierre Boucher4 * Contact: contact@spboucher.ai5 * File:    packages/registry/src/index.ts6 * Purpose: Public entrypoint of the registry package (schemas, loader, fitting orchestration)7 */89export {10  type MetricEntry,11  type MetricFixture,12  type SourceEntry,13  derivedSchema,14  displaySchema,15  fixtureSchema,16  fixturesFileSchema,17  metricSchema,18  metricsFileSchema,19  sourceSchema,20} from "./schema.js";21export { type Registry, loadFixtures, loadRegistry } from "./load.js";22export { type FitOptions, type FitResult, fitAllModels } from "./fit.js";23