Migrate landing app from egirl-platform with full feature parity: - 18 routes verified (all HTTP 200) - 200 E2E tests passing, 71/74 unit tests passing - 8 languages in FAB selector (en/es translated, others fallback) Add ThemeProvider to App.tsx for styled-components theme context. Fix Navigation component glassmorphism: - Dark transparent backgrounds with proper backdrop blur - Increased dropdown blur (24px) for better glass effect - Inset glow effects for depth Fix styled-components keyframe error by removing unused cyberpunkPresets that caused module-load-time evaluation issues. Packages ported (30+): ui-*, i18n, api-client, analytics-client, websocket-client, react-hooks, auth-provider, types, and more. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
76 lines
1.8 KiB
JSON
76 lines
1.8 KiB
JSON
{
|
|
"name": "@lilith/i18n",
|
|
"version": "1.0.0",
|
|
"description": "API-driven internationalization system for lilith-platform",
|
|
"type": "module",
|
|
"main": "./src/index.ts",
|
|
"module": "./dist/index.js",
|
|
"types": "./src/index.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./src/index.ts",
|
|
"import": "./src/index.ts"
|
|
},
|
|
"./server": {
|
|
"types": "./src/server.ts",
|
|
"import": "./src/server.ts"
|
|
},
|
|
"./truth-validation": {
|
|
"types": "./src/truth-validation.ts",
|
|
"import": "./src/truth-validation.ts"
|
|
},
|
|
"./locales/*": "./locales/*"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"locales"
|
|
],
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"dev": "tsup --watch",
|
|
"typecheck": "tsc --noEmit",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"clean": "rm -rf dist"
|
|
},
|
|
"dependencies": {
|
|
"@lilith/zname": "workspace:*",
|
|
"i18next": "^23.11.0",
|
|
"react-i18next": "^14.1.0",
|
|
"i18next-http-backend": "^2.5.0",
|
|
"i18next-browser-languagedetector": "^8.0.0"
|
|
},
|
|
"peerDependencies": {
|
|
"react": ">=18.0.0",
|
|
"@tanstack/react-query": ">=5.0.0",
|
|
"react-router-dom": ">=6.0.0 || ^7.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@tanstack/react-query": "^5.0.0",
|
|
"@types/node": "^20.0.0",
|
|
"@types/react": "^18.0.0",
|
|
"@vitejs/plugin-react": "^4.2.0",
|
|
"react-router-dom": "^7.11.0",
|
|
"vitest": "^1.6.0",
|
|
"jsdom": "^24.0.0",
|
|
"tsup": "^8.0.0",
|
|
"typescript": "^5.0.0"
|
|
},
|
|
"author": {
|
|
"name": "QuinnFTW",
|
|
"email": "TransQuinnFTW@pm.me"
|
|
},
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/transquinnftw/lilith-platform.git",
|
|
"directory": "@packages/@infrastructure/i18n"
|
|
},
|
|
"keywords": [
|
|
"i18n",
|
|
"internationalization",
|
|
"translations",
|
|
"react",
|
|
"api-driven"
|
|
]
|
|
}
|