adding the data-pipeline to ts and pnpm workspaces

This commit is contained in:
lila 2026-04-20 09:05:27 +02:00
parent 200b14ef64
commit a3d19d36f6
12 changed files with 327 additions and 22 deletions

View file

@ -0,0 +1,23 @@
{
"name": "@lila/pipeline",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"extract": "tsx scripts/extract.ts",
"annotate": "tsx scripts/annotate.ts",
"enrich": "tsx scripts/enrich.ts",
"merge": "tsx scripts/merge.ts",
"compare": "tsx scripts/compare.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"
}
}

View file

@ -0,0 +1,11 @@
{
"extends": "../tsconfig.base.json",
"compilerOptions": {
"module": "NodeNext",
"moduleResolution": "NodeNext",
"outDir": "dist",
"rootDir": "scripts",
},
"references": [{ "path": "../packages/shared" }],
"include": ["scripts/**/*"],
}