36 lines
1.2 KiB
JSON
36 lines
1.2 KiB
JSON
{
|
|
"name": "@lilith/messages-user-backend",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"description": "BFF for the messages feature \u2014 proxies to imessage-sync, hosts mail-admin + reputation + assistant modules",
|
|
"main": "dist/server.js",
|
|
"scripts": {
|
|
"dev": "tsx watch --env-file=.env.development src/server.ts",
|
|
"start": "node dist/server.js",
|
|
"build": "bun build src/server.ts --target=node --outfile=dist/server.js --external=pg --external=@lilith/messenger-model-boss",
|
|
"typecheck": "tsc --noEmit",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest --watch",
|
|
"test:integration": "vitest run --config vitest.integration.config.ts",
|
|
"lint": "eslint src"
|
|
},
|
|
"dependencies": {
|
|
"@lilith/messenger-model-boss": "^1.1.0",
|
|
"pg": "^8.17.1",
|
|
"ws": "^8.18.0",
|
|
"@lilith/quinn-my-mcp": "*"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^10.0.1",
|
|
"@lilith/eslint-plugin-file-length": "^1.1.2",
|
|
"@types/node": "^20.19.0",
|
|
"@types/pg": "^8.11.10",
|
|
"@types/ws": "^8.5.13",
|
|
"eslint": "^10.1.0",
|
|
"tsx": "^4.19.2",
|
|
"typescript": "^5.9.0",
|
|
"typescript-eslint": "^8.58.0",
|
|
"vitest": "^3.2.0"
|
|
}
|
|
}
|