Phase 0: monorepo skeleton (hub, live-map, api, packages, infra, CI)

This commit is contained in:
Mavis
2026-06-02 15:47:28 +00:00
commit 7b19c54943
59 changed files with 2391 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
{
"name": "@kerbal-rt/orbital-math",
"version": "0.1.0",
"private": true,
"description": "Pure functions for keplerian orbit propagation, occultation, transfer windows",
"type": "module",
"main": "./src/index.ts",
"types": "./src/index.ts",
"exports": {
".": "./src/index.ts"
},
"scripts": {
"typecheck": "tsc --noEmit",
"lint": "echo 'no linter yet'",
"test": "vitest run",
"test:watch": "vitest",
"build": "tsc"
},
"dependencies": {
"@kerbal-rt/shared-types": "workspace:*"
},
"devDependencies": {
"typescript": "^5.6.2",
"vitest": "^2.1.1"
}
}