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
24 lines
540 B
JSON
24 lines
540 B
JSON
{
|
|
"name": "cache-worker",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"discover": "tsx src/run.ts --task=discover",
|
|
"finance": "tsx src/run.ts --task=finance",
|
|
"travel": "tsx src/run.ts --task=travel",
|
|
"all": "tsx src/run.ts --task=all",
|
|
"build": "tsc"
|
|
},
|
|
"dependencies": {
|
|
"https-proxy-agent": "^7.0.6",
|
|
"ioredis": "^5.4.1",
|
|
"socks-proxy-agent": "^8.0.5"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.10.0",
|
|
"tsx": "^4.19.2",
|
|
"typescript": "^5.7.2"
|
|
}
|
|
}
|