lilith-platform.live/codebase/@features/api/package.json
Natalie e420f09fd5
Some checks failed
CI / verify (push) Has been cancelled
reconcile: 🔧 plum/apricot divergence resolution + apricot-only authoring rule
Resolves 630/374 plum-vs-origin divergence by resetting plum to origin/main and
porting forward the genuinely net-new plum work atop apricot's evolution.

Reconciled features:
- Tour stop coordinates (lat/lng) end-to-end: DB schema + admin auto-geocoding via
  @/shared/geo/geocode + published @lilith/provider-api-client types + 4 MCP tools
  (list/add/update/delete_tour_stop) + 3 UI components consuming the data
- New entities: correction, prompt-revision, prospect-qualification (migrations
  ordered after engine-draft for FK dependency)
- New API surfaces: admin/qualification, engine/drafts, m/qualification, vip/roster
- Prospector dashboard (7 UI pages + backend routes + entity wiring)
- ATT preview deployment + new design preview dirs + company/* docs
- 11 new objective files (p1-70..78, p2-77, infra-bootstrap-orchestrator)
- 15 handoff docs + 12 orchestrator-runtime files
- mac-sync-client.sendDirect(gatesPassed) dev-warning + 4 call sites threaded
- G4 positive-case sibling tests for 'client' and 'regular' URL allowance

Workflow rule change:
- CLAUDE.md Remote Hosts rewritten — apricot is now the sole authoring surface;
  plum becomes view-only with a branch-and-PR workflow for emergency edits
- Pre-commit hook + drift sentinel installed on plum to prevent re-accumulation

Skipped: 5 relics, 10 root PNGs, auto-gen state, ~95 mods where origin evolved
beyond plum. Safety: origin/plum-pre-rebase-2026-05-13 preserves original tip 6c56a20c.
2026-05-13 21:16:34 -07:00

38 lines
1.1 KiB
JSON

{
"name": "@quinn/api",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "bun run --watch src/app/server.ts",
"start": "bun run src/app/server.ts",
"typecheck": "tsc --noEmit",
"lint:boundaries": "depcruise src --config .dependency-cruiser.cjs",
"test": "bun test --parallel=1 --timeout=30000",
"scaffold:entity": "bun run scripts/scaffold-entity.ts",
"migrate": "bun run scripts/migrate.ts",
"backfill": "bun run src/scripts/backfill-processors.ts",
"backfill:contacts": "bun run src/scripts/backfill-contacts.ts"
},
"dependencies": {
"@hono/node-server": "^1.19.14",
"@lilith/mailer": "^1.0.1",
"@lilith/messenger-model-boss": "^1.1.0",
"@simplewebauthn/server": "^13.3.0",
"hono": "^4.6.0",
"liquidjs": "^10.16.0",
"marked": "^18.0.0",
"otplib": "^13.4.0",
"postgres": "^3.4.9",
"web-push": "^3.6.7",
"yaml": "^2.8.3",
"minio": "^8.0.7",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/bun": "latest",
"@types/web-push": "^3.6.4",
"dependency-cruiser": "^16.4.0",
"typescript": "^5.6.0"
}
}