2026-04-18 05:50:24 -07:00
|
|
|
{
|
|
|
|
|
"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",
|
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
|
|
|
"test": "bun test --parallel=1 --timeout=30000",
|
2026-04-18 22:02:23 -07:00
|
|
|
"scaffold:entity": "bun run scripts/scaffold-entity.ts",
|
2026-04-23 20:09:28 -07:00
|
|
|
"migrate": "bun run scripts/migrate.ts",
|
2026-04-23 20:20:25 -07:00
|
|
|
"backfill": "bun run src/scripts/backfill-processors.ts",
|
|
|
|
|
"backfill:contacts": "bun run src/scripts/backfill-contacts.ts"
|
2026-04-18 05:50:24 -07:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2026-04-19 17:30:09 -07:00
|
|
|
"@hono/node-server": "^1.19.14",
|
2026-04-18 05:50:24 -07:00
|
|
|
"@lilith/mailer": "^1.0.1",
|
2026-04-19 00:57:52 -07:00
|
|
|
"@lilith/messenger-model-boss": "^1.1.0",
|
2026-04-19 21:14:25 -07:00
|
|
|
"@simplewebauthn/server": "^13.3.0",
|
2026-04-18 05:50:24 -07:00
|
|
|
"hono": "^4.6.0",
|
2026-04-22 16:58:25 -07:00
|
|
|
"liquidjs": "^10.16.0",
|
2026-04-18 05:50:24 -07:00
|
|
|
"marked": "^18.0.0",
|
|
|
|
|
"otplib": "^13.4.0",
|
2026-04-19 19:11:34 -07:00
|
|
|
"postgres": "^3.4.9",
|
2026-04-19 15:29:34 -07:00
|
|
|
"web-push": "^3.6.7",
|
2026-04-18 22:02:23 -07:00
|
|
|
"yaml": "^2.8.3",
|
2026-04-20 01:09:59 -07:00
|
|
|
"minio": "^8.0.7",
|
2026-04-18 05:50:24 -07:00
|
|
|
"zod": "^3.23.0"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@types/bun": "latest",
|
2026-04-19 15:29:34 -07:00
|
|
|
"@types/web-push": "^3.6.4",
|
2026-04-18 05:50:24 -07:00
|
|
|
"dependency-cruiser": "^16.4.0",
|
|
|
|
|
"typescript": "^5.6.0"
|
|
|
|
|
}
|
|
|
|
|
}
|