ai/services/inference-worker/package.json
Natalie f0e06abcc7 feat(@applications/@ai): add postgres-array parser module
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-04-14 16:25:54 -07:00

27 lines
818 B
JSON

{
"name": "@lilith/ai-core-inference-worker",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Inference worker for ai-core — runs on black, calls model-boss on apricot LAN, writes results back via Postgres LISTEN/NOTIFY",
"main": "src/main.ts",
"scripts": {
"start": "tsx src/main.ts",
"start:dev": "tsx watch src/main.ts",
"start:prod": "node dist/main.js",
"build:prod": "bun build src/main.ts --target=node --outfile=dist/main.js --external=pg-native",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest --watch"
},
"dependencies": {
"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"
}
}