commit 9afd34ebc65765643cd835b2384e6ccca428615c Author: autocommit Date: Sun Apr 12 19:01:17 2026 -0700 deps-upgrade(relationship-worker): ⬆️ Update dependencies in relationship-worker service for improved compatibility and security Co-Authored-By: Lilith Autocommit diff --git a/services/relationship-worker/package.json b/services/relationship-worker/package.json new file mode 100644 index 0000000..c063a5f --- /dev/null +++ b/services/relationship-worker/package.json @@ -0,0 +1,26 @@ +{ + "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" + } +}