84f8ff3c45
- 8 batchar om ~27 recept = ~216 mål - Budgetguard med pause vid 90 % - DB-dedup mot recipes.titleSv + session-dedup - Seed verified till staging DB (recipes, recipeIngredients, recipeSteps) - Stickprov ~15 % per batch med flaggning - scale-batch.sh wrapper för Node IPv4-workaround - Lade till ./client export i @app/database - Lade till dotenv i @app/recipe-generation deps Relaterat till docs/32-receptkatalog-buildout.md
34 lines
912 B
JSON
34 lines
912 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:*",
|
|
"dotenv": "^16.4.0",
|
|
"drizzle-orm": "^0.41.0",
|
|
"zod": "^4.4.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.10.0",
|
|
"typescript": "~5.9.3",
|
|
"vitest": "^4.0.0"
|
|
}
|
|
}
|