- deploy/k3s удалён, deploy/docker добавлен (Caddyfile, docker-compose, searxng) - chat-svc: agents/models/prompts удалены, использует llm-svc (LLMClient, EmbeddingClient) - master-agents-svc: SearchOrchestrator, classifier, researcher, actions, widgets - web-svc: ChatModelSelector, Optimization, Sources удалены; InputBarPlus; UnregisterSW - geo-device-svc, localization-svc: Dockerfiles - docs: 02-k3s-services-spec.md, RUNBOOK/TELEMETRY/WORKING удалены Co-authored-by: Cursor <cursoragent@cursor.com>
22 lines
535 B
JSON
22 lines
535 B
JSON
{
|
|
"name": "localization-svc",
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"description": "Сервис локализации на основе геопозиции (зависит от geo-device-service)",
|
|
"main": "src/index.ts",
|
|
"scripts": {
|
|
"dev": "npx tsx watch src/index.ts",
|
|
"build": "tsc",
|
|
"start": "node dist/index.js"
|
|
},
|
|
"dependencies": {
|
|
"cors": "^2.8.5",
|
|
"express": "^4.21.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^4.17.21",
|
|
"tsx": "^4.19.0",
|
|
"typescript": "^5.9.3"
|
|
}
|
|
}
|