Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
88 lines
2.5 KiB
Plaintext
88 lines
2.5 KiB
Plaintext
{
|
|
"name": "use-intl",
|
|
"version": "4.8.2",
|
|
"sideEffects": false,
|
|
"author": "Jan Amann <jan@amann.work>",
|
|
"funding": [
|
|
{
|
|
"type": "individual",
|
|
"url": "https://github.com/sponsors/amannn"
|
|
}
|
|
],
|
|
"description": "Internationalization (i18n) for React",
|
|
"license": "MIT",
|
|
"homepage": "https://next-intl.dev",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/amannn/next-intl.git"
|
|
},
|
|
"scripts": {
|
|
"build": "rm -rf dist && rollup -c",
|
|
"test": "TZ=Europe/Berlin vitest",
|
|
"lint": "pnpm run lint:source && pnpm run lint:package",
|
|
"lint:source": "eslint src test && tsc --noEmit && pnpm run lint:prettier",
|
|
"lint:package": "publint && attw --pack --ignore-rules=cjs-resolves-to-esm",
|
|
"lint:prettier": "prettier src --check",
|
|
"prepublishOnly": "turbo build",
|
|
"size": "size-limit"
|
|
},
|
|
"type": "module",
|
|
"main": "./dist/esm/production/index.js",
|
|
"typings": "./dist/types/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/types/index.d.ts",
|
|
"development": "./dist/esm/development/index.js",
|
|
"default": "./dist/esm/production/index.js"
|
|
},
|
|
"./core": {
|
|
"types": "./dist/types/core.d.ts",
|
|
"development": "./dist/esm/development/core.js",
|
|
"default": "./dist/esm/production/core.js"
|
|
},
|
|
"./react": {
|
|
"types": "./dist/types/react.d.ts",
|
|
"development": "./dist/esm/development/react.js",
|
|
"default": "./dist/esm/production/react.js"
|
|
},
|
|
"./format-message": {
|
|
"types": "./dist/types/core/format-message/index.d.ts",
|
|
"development": "./dist/esm/development/format-message/index.js",
|
|
"default": "./dist/esm/production/format-message/index.js"
|
|
},
|
|
"./format-message/format-only": {
|
|
"types": "./dist/types/core/format-message/format-only.d.ts",
|
|
"development": "./dist/esm/development/format-message/format-only.js",
|
|
"default": "./dist/esm/production/format-message/format-only.js"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"core.d.ts",
|
|
"react.d.ts",
|
|
"format-message.d.ts",
|
|
"format-message"
|
|
],
|
|
"keywords": [
|
|
"react",
|
|
"intl",
|
|
"i18n",
|
|
"internationalization",
|
|
"localization",
|
|
"translate",
|
|
"translation",
|
|
"format",
|
|
"formatting"
|
|
],
|
|
"dependencies": {
|
|
"@formatjs/fast-memoize": "^3.1.0",
|
|
"@schummar/icu-type-parser": "1.21.5",
|
|
"icu-minify": "^4.8.2",
|
|
"intl-messageformat": "^11.1.0"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "^17.0.0 || ^18.0.0 || >=19.0.0-rc <19.0.0 || ^19.0.0"
|
|
},
|
|
"gitHead": "de4baeb465185133923b69c8da36457c9418d781"
|
|
}
|