- Remove foreign key on run_status.source_id to support sentinel rows for tracking one-time pipeline steps (compile_candidates, compile_votes, merge, compare) - Add stage-3-enrich/config.ts with all provider configurations, ALL_PROVIDERS ordered local-first, and validateProviderKey() for startup key checks - Add .env.example with required API keys for OpenRouter and Anthropic - Add pipeline:run script to package.json using --env-file .env - Add .env to root .gitignore coverage for data-pipeline/.env
25 lines
614 B
JSON
25 lines
614 B
JSON
{
|
|
"name": "@lila/pipeline",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"db:import": "tsx db/import.ts",
|
|
"db:init": "tsx db/init.ts",
|
|
"annotate": "tsx stage-2-annotate/scripts/annotate.ts",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"pipeline:run": "tsx --env-file .env pipeline.ts"
|
|
},
|
|
"dependencies": {
|
|
"@lila/shared": "workspace:*",
|
|
"better-sqlite3": "^12.9.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/better-sqlite3": "^7.6.13",
|
|
"@types/node": "^24.12.0",
|
|
"tsx": "^4.21.0",
|
|
"typescript": "^5.9.3",
|
|
"vitest": "^4.1.0"
|
|
}
|
|
}
|