platform-codebase/features/conversation-assistant/package.json
Quinn Ftw 60fd80373f feat(conversation-assistant): service registry integration and bind mounts
- Add service registry integration for auto-discovery
- Switch docker volumes to bind mounts for NFS persistence
- Add device status endpoint (GET /devices/:id/status)
- Add health controller for service health checks
- Update macOS installer to discover service from registry
- Remove nginx config (moved to infrastructure)
- Add env files for apricot and production deployments

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-29 01:29:13 -08:00

25 lines
1.1 KiB
JSON

{
"name": "@lilith/conversation-assistant",
"version": "0.1.0",
"private": true,
"description": "AI-powered conversation assistant for iMessage",
"scripts": {
"dev": "pnpm --filter @conversation-assistant/frontend dev & pnpm --filter @conversation-assistant/server start:dev",
"dev:frontend": "pnpm --filter @conversation-assistant/frontend dev",
"dev:server": "pnpm --filter @conversation-assistant/server start:dev",
"build": "pnpm -r build",
"build:frontend": "pnpm --filter @conversation-assistant/frontend build",
"build:server": "pnpm --filter @conversation-assistant/server build",
"test": "pnpm -r test",
"test:frontend": "pnpm --filter @conversation-assistant/frontend test",
"test:server": "pnpm --filter @conversation-assistant/server test",
"typecheck": "pnpm -r typecheck",
"deploy:codebase": "../../../infrastructure/reconciliation/reconcile --host vps --service conversation-assistant",
"deploy:infrastructure": "../../../infrastructure/reconciliation/reconcile --host vps --service nginx-config-sync"
},
"workspaces": [
"frontend",
"server",
"shared"
]
}