bb-plane-fork/packages/i18n/package.json
2026-03-27 15:59:55 +05:30

41 lines
1.1 KiB
JSON

{
"name": "@plane/i18n",
"version": "1.2.3",
"private": true,
"description": "I18n shared across multiple apps internally",
"license": "AGPL-3.0",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"scripts": {
"dev": "tsdown --watch --no-clean",
"build": "tsdown",
"check:lint": "oxlint --max-warnings=2 .",
"check:types": "tsc --noEmit",
"check:format": "oxfmt --check .",
"fix:lint": "oxlint --fix .",
"fix:format": "oxfmt .",
"clean": "rm -rf .turbo && rm -rf .next && rm -rf node_modules && rm -rf dist"
},
"dependencies": {
"@plane/utils": "workspace:*",
"intl-messageformat": "^10.7.11",
"lodash-es": "catalog:",
"mobx": "catalog:",
"mobx-react": "catalog:",
"react": "catalog:"
},
"devDependencies": {
"@plane/typescript-config": "workspace:*",
"@types/lodash-es": "catalog:",
"@types/node": "catalog:",
"@types/react": "catalog:",
"tsdown": "catalog:",
"typescript": "catalog:"
}
}