ai/services/relationship-worker/package.json
2026-04-12 19:01:17 -07:00

26 lines
732 B
JSON

{
"name": "@lilith/imessage-sync-relationship-worker",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Relationship worker — persona synthesis, efficiency scoring, and financial backfill via LLM analysis of conversation history",
"main": "src/main.ts",
"scripts": {
"start": "tsx src/main.ts",
"start:dev": "tsx watch src/main.ts",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest --watch"
},
"dependencies": {
"@lilith/messenger-model-boss": "^1.2.0",
"pg": "^8.17.1",
"tsx": "^4.19.2"
},
"devDependencies": {
"@types/node": "^20.19.30",
"@types/pg": "^8.11.10",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
}
}