cocottetech/@platform/codebase/@features/people-service/package.json
Natalie 1fe5f81a71 feat(people-service): standalone identity service on its own DB
New cocottetech platform service (NestJS, port 3061) that owns the canonical
people/identities/relationships/signals model in its OWN database (black:25461),
not the shared platform.db — per the per-service-DB directive. Ported from
lilith's entities/people, dropping the lilith-specific clients/contacts bridges
and quinn_my ownership. Internal /internal/people/* API (upsert-identity,
signals, get, by-identity, summary) behind a service-token guard; health is
public. Consumed over HTTP by prospector and other apps. tsc clean.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-28 20:10:02 -04:00

42 lines
1.3 KiB
JSON

{
"name": "@cocottetech/people-service",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Shared cocottetech people service — canonical identity/relationship/signal store on its OWN database (black:25461). Consumed over HTTP by prospector and other apps; never a shared DB.",
"scripts": {
"build": "nest build",
"start": "node dist/main.js",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:unit": "vitest run --dir src",
"test:watch": "vitest"
},
"dependencies": {
"@nestjs/common": "11.1.11",
"@nestjs/config": "^4.0.2",
"@nestjs/core": "11.1.11",
"@nestjs/platform-express": "11.1.11",
"@nestjs/swagger": "^11.2.5",
"@nestjs/typeorm": "^11.0.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.3",
"pg": "^8.17.1",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.2",
"typeorm": "^0.3.28"
},
"devDependencies": {
"@nestjs/cli": "^11.0.16",
"@nestjs/schematics": "11.0.9",
"@nestjs/testing": "^11.1.12",
"@swc/core": "^1.15.8",
"@types/node": "^20.19.30",
"@types/pg": "^8.20.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
}
}