{ "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" ] }