Files
gooseek/package.json
home f4d945a2b5 feat: localization service and frontend integration
- Add localization-service microservice (locale resolution, translations)
- Add frontend API routes /api/locale and /api/translations/[locale]
- Add LocalizationProvider and localization context
- Integrate localization into layout, EmptyChat, MessageInput components
- Update MICROSERVICES.md architecture docs
- Add localization-service to workspaces

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-20 21:45:44 +03:00

25 lines
753 B
JSON

{
"name": "gooseek",
"version": "1.12.1",
"license": "MIT",
"private": true,
"workspaces": [
"apps/*"
],
"author": "ItzCrazyKns",
"scripts": {
"dev": "npm run dev -w frontend",
"build": "npm run build -w frontend",
"start": "npm run start -w frontend",
"lint": "npm run lint -w frontend",
"format:write": "prettier . --write",
"docker:build": "docker build -f docker/Dockerfile -t gooseek:latest .",
"docker:up": "docker compose -f docker/docker-compose.yaml up -d",
"docker:down": "docker compose -f docker/docker-compose.yaml down",
"dev:geo": "npm run dev -w geo-device-service",
"dev:locale": "npm run dev -w localization-service"
},
"devDependencies": {
"prettier": "^3.2.5"
}
}