Files
Cibello-app/packages/recipe-generation/package.json
T
Sven (AAMOS AI) 4b7dec2759 feat(recipe-generation): Cibello Receptkatalog Fas A – STEG 1
- Nytt paket @app/recipe-generation med pipeline, verifieringsgrind,
  gaprapport och pilotbatch-script.
- Ny AAMOS-task GENERATE_RECIPE_CANDIDATES i @app/ai-contracts.
- GeminiAamosClient utökat med receptgenereringsstöd.
- MockAamosClient uppdaterad med deterministiska kandidater.
- Verifieringspipeline: ingrediensmappning (hård spärr), härledda allergener,
  beräknad näring via nutrition-engine, språk-/kvalitetskontroll, dedup.
- Hermetiska tester: 10/10 gröna.
- typecheck + test + build: gröna för hela workspace.

Refs: docs/32-receptkatalog-buildout.md
2026-08-09 19:47:03 +07:00

33 lines
887 B
JSON

{
"name": "@app/recipe-generation",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "AI-assisterad receptgenerering med verifieringspipeline för Cibello (docs/32)",
"exports": {
".": "./src/index.ts",
"./pipeline": "./src/pipeline.ts",
"./verification": "./src/verification.ts",
"./gap-report": "./src/gap-report.ts",
"./gemini-recipe": "./src/gemini-recipe.ts"
},
"scripts": {
"typecheck": "tsc --noEmit",
"test": "vitest run"
},
"dependencies": {
"@app/ai-contracts": "workspace:*",
"@app/database": "workspace:*",
"@app/nutrition-engine": "workspace:*",
"@app/recipe-engine": "workspace:*",
"@app/shared-types": "workspace:*",
"drizzle-orm": "^0.41.0",
"zod": "^4.4.0"
},
"devDependencies": {
"@types/node": "^22.10.0",
"typescript": "~5.9.3",
"vitest": "^4.0.0"
}
}