feat(wave3): @mosaic/coord TypeScript orchestrator (#6)

Co-authored-by: Jason Woltje <jason@diversecanvas.com>
Co-committed-by: Jason Woltje <jason@diversecanvas.com>
This commit was merged in pull request #6.
This commit is contained in:
2026-03-07 01:32:10 +00:00
committed by jason.woltje
parent 2fca61fe04
commit 7f7109fc09
12 changed files with 2047 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
{
"name": "@mosaic/coord",
"version": "0.1.0",
"type": "module",
"description": "Mosaic mission coordination — TypeScript rewrite of mosaic coord",
"scripts": {
"build": "tsc -p tsconfig.json",
"typecheck": "tsc --noEmit",
"lint": "echo 'ok'",
"test": "vitest run"
},
"dependencies": {
"@mosaic/queue": "workspace:*",
"@mosaic/types": "workspace:*",
"commander": "^13",
"js-yaml": "^4"
},
"devDependencies": {
"@types/js-yaml": "^4",
"@types/node": "^22",
"typescript": "^5",
"vitest": "^2"
}
}