Major changes: - Add Go backend (backend/) with microservices architecture - Enhanced master-agents-svc: reranker, content-classifier, stealth-crawler, proxy-manager, media-search, fastClassifier, language detection - New web-svc widgets: KnowledgeCard, ProductCard, ProfileCard, VideoCard, UnifiedCard, CardGallery, InlineImageGallery, SourcesPanel, RelatedQuestions - Improved discover-svc with discover-db integration - Docker deployment improvements (Caddyfile, vendor.sh, BUILD.md) - Library-svc: project_id schema migration - Remove deprecated finance-svc and travel-svc - Localization improvements across services Made-with: Cursor
35 lines
805 B
JSON
35 lines
805 B
JSON
{
|
|
"name": "master-agents-svc",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "tsx watch src/index.ts",
|
|
"build": "tsc",
|
|
"start": "node dist/index.js",
|
|
"lint": "eslint src --ext .ts"
|
|
},
|
|
"dependencies": {
|
|
"@fastify/cors": "^9.0.1",
|
|
"@toolsycc/json-repair": "^0.1.22",
|
|
"fastify": "^4.28.1",
|
|
"franc": "^6.2.0",
|
|
"https-proxy-agent": "^7.0.6",
|
|
"mathjs": "^15.1.0",
|
|
"ollama": "^0.6.3",
|
|
"openai": "^6.9.0",
|
|
"partial-json": "^0.1.7",
|
|
"rfc6902": "^5.1.2",
|
|
"socks-proxy-agent": "^8.0.5",
|
|
"turndown": "^7.2.2",
|
|
"yahoo-finance2": "^3.13.0",
|
|
"zod": "^4.1.12"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^24.8.1",
|
|
"@types/turndown": "^5.0.6",
|
|
"tsx": "^4.19.2",
|
|
"typescript": "^5.9.3"
|
|
}
|
|
}
|