881c5bb1e3
- processProactiveTips now iterates all expiring items sorted by urgency and emits the first candidate with a recipe that clears 7-day dedup. - Add pt-PT proactive-tip templates; remove en-GB duplicate; parity test asserts against shared-types SUPPORTED_LANGUAGE_TAGS. - Serialize DB test setup via turbo dependencies; seed truncates only *_test DBs, guarded by both --test flag and DB name suffix.
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"
|
|
}
|
|
}
|