Files
gooseek/services/chat-svc/package.json
home cd6b7857ba feat: default locale Russian, geo determines language for other countries
- localization-svc: defaultLocale ru, resolveLocale only by geo
- web-svc: DEFAULT_LOCALE ru, layout lang=ru, embeddedTranslations fallback ru
- countryToLocale: default ru when no country or unknown country

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-23 15:10:38 +03:00

40 lines
940 B
JSON

{
"name": "chat-svc",
"version": "1.0.0",
"private": true,
"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",
"@fastify/multipart": "^9.4.0",
"@google/genai": "^1.34.0",
"@toolsycc/json-repair": "^0.1.22",
"axios": "^1.8.3",
"fastify": "^4.28.1",
"js-tiktoken": "^1.0.21",
"mammoth": "^1.9.1",
"mathjs": "^15.1.0",
"officeparser": "^5.2.2",
"ollama": "^0.6.3",
"openai": "^6.9.0",
"partial-json": "^0.1.7",
"pdf-parse": "^2.4.5",
"rfc6902": "^5.1.2",
"turndown": "^7.2.2",
"yahoo-finance2": "^3.10.2",
"zod": "^4.1.12"
},
"devDependencies": {
"@types/node": "^24.8.1",
"@types/pdf-parse": "^1.1.4",
"@types/turndown": "^5.0.6",
"tsx": "^4.19.2",
"typescript": "^5.9.3"
},
"type": "module"
}