Files
gooseek/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

23 lines
721 B
JSON

{
"name": "gooseek",
"version": "1.12.1",
"license": "MIT",
"private": true,
"workspaces": ["services/*"],
"author": "ItzCrazyKns",
"scripts": {
"build": "npm run build -w web-svc",
"lint": "npm run lint -w web-svc",
"format:write": "prettier . --write",
"db:library-migrate": "npm run db:migrate -w library-svc",
"db:memory-migrate": "npm run db:migrate -w memory-svc",
"db:notifications-migrate": "npm run db:migrate -w notifications-svc",
"db:billing-migrate": "npm run db:migrate -w billing-svc",
"db:profile-migrate": "npm run db:migrate -w profile-svc",
"db:auth-migrate": "npm run db:migrate -w auth-svc"
},
"devDependencies": {
"prettier": "^3.2.5"
}
}