Files
simple-react-app-kit/packages/i18n/package.json
T
Maofeng 0768e8fa29 feat(i18n): expand catalog runtime and developer tooling
- add Intl-backed locale definitions, formatters, catalog loaders, and runtime hooks\n- compile hashed production catalogs from package-scoped catalog sources\n- drive Lingui extraction and compilation directly from project JSON config\n- redesign the devtool with localized controls, draggable persistence, settings, navigation, copy actions, ANSI output, and fullscreen support\n- extend repository APIs, CLI coverage, documentation, and runtime tests
2026-07-30 14:47:42 +08:00

48 lines
1.1 KiB
JSON

{
"name": "@workspace/i18n",
"version": "0.0.0",
"type": "module",
"private": true,
"engines": {
"node": ">=22.19.0"
},
"bin": {
"workspace-i18n": "./src/cli/index.ts"
},
"scripts": {
"format": "prettier --write \"**/*.{css,json,ts,tsx}\"",
"test": "vitest run",
"typecheck": "tsc --noEmit"
},
"exports": {
".": "./src/index.ts",
"./catalogs": "./src/runtime/catalog-loader.ts",
"./devtool": "./src/devtool/index.ts",
"./lingui-config": "./src/config/lingui-config.ts",
"./vite": "./src/vite.ts"
},
"dependencies": {
"@lingui/cli": "^6",
"@lingui/conf": "^6",
"@lingui/core": "^6",
"@lingui/react": "^6",
"@vitejs/plugin-react": "^6",
"ansi-to-react": "^6.2.6",
"cac": "^7.0.0",
"lucide-react": "^1.27.0",
"open": "^11.0.0",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"vite": "^8"
},
"devDependencies": {
"@testing-library/react": "^16",
"@types/node": "^24",
"@types/react": "^19",
"@types/react-dom": "^19",
"jsdom": "^30",
"typescript": "~6",
"vitest": "^4"
}
}