28 lines
1.2 KiB
JSON
Executable file
28 lines
1.2 KiB
JSON
Executable file
{
|
|
"name": "@lilith/conversation-assistant",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"description": "AI-powered conversation assistant for iMessage",
|
|
"scripts": {
|
|
"dev": "./scripts/dev.sh",
|
|
"dev:frontend": "pnpm --filter @conversation-assistant/frontend dev",
|
|
"dev:backend": "pnpm --filter @lilith/conversation-assistant-api start:dev",
|
|
"dev:status": "./scripts/dev.sh --status",
|
|
"dev:stop": "./scripts/dev.sh --stop",
|
|
"build": "pnpm -r build",
|
|
"build:frontend": "pnpm --filter @conversation-assistant/frontend build",
|
|
"build:backend": "pnpm --filter @lilith/conversation-assistant-api build",
|
|
"test": "pnpm -r test",
|
|
"test:frontend": "pnpm --filter @conversation-assistant/frontend test",
|
|
"test:backend": "pnpm --filter @lilith/conversation-assistant-api test",
|
|
"typecheck": "pnpm -r typecheck",
|
|
"process:messages": "curl -sX POST http://localhost:3100/api/processing/process",
|
|
"deploy:codebase": "../../../infrastructure/reconciliation/reconcile --host vps --service conversation-assistant",
|
|
"deploy:infrastructure": "../../../infrastructure/reconciliation/reconcile --host vps --service nginx-config-sync"
|
|
},
|
|
"workspaces": [
|
|
"frontend-dev",
|
|
"backend-api",
|
|
"shared"
|
|
]
|
|
}
|