34 lines
1.1 KiB
JSON
34 lines
1.1 KiB
JSON
{
|
|
"name": "@lilith/quinn-ai-backend",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"description": "Backend for quinn.ai \u2014 assistant management interface with LLM chat, timers, nudges, and config",
|
|
"main": "dist/server.js",
|
|
"scripts": {
|
|
"dev": "bun --watch --env-file .env.development src/server.ts",
|
|
"start": "node dist/server.js",
|
|
"build": "tsc -p tsconfig.build.json",
|
|
"build:prod": "bun build src/server.ts --target=node --outfile=dist/server.js",
|
|
"typecheck": "tsc --noEmit",
|
|
"test": "vitest run"
|
|
},
|
|
"dependencies": {
|
|
"@lilith/agent-assistant": "0.3.0",
|
|
"@lilith/agent-core": "^0.1.0",
|
|
"@lilith/agent-social": "^0.1.0",
|
|
"@lilith/model-boss-client": "^4.3.2",
|
|
"@lilith/model-boss-types": "^4.3.0",
|
|
"@lilith/quinn-db-pg": "^1.0.1",
|
|
"@lilith/quinn-db-redis": "^1.0.0",
|
|
"@lilith/quinn-db-timescale": "^1.0.0",
|
|
"@lilith/quinn-my-mcp": "*"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "^1.3.12",
|
|
"@types/node": "^20.19.0",
|
|
"tsx": "^4.19.2",
|
|
"typescript": "^5.9.0",
|
|
"vitest": "^4.1.4"
|
|
}
|
|
}
|