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
60 lines
1.6 KiB
Plaintext
60 lines
1.6 KiB
Plaintext
{
|
|
"name": "icu-minify",
|
|
"version": "4.8.2",
|
|
"sideEffects": false,
|
|
"author": "Jan Amann <jan@amann.work>",
|
|
"funding": [
|
|
{
|
|
"type": "individual",
|
|
"url": "https://github.com/sponsors/amannn"
|
|
}
|
|
],
|
|
"description": "ICU message format compiler with a <1KB runtime bundle footprint",
|
|
"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",
|
|
"exports": {
|
|
"./compile": {
|
|
"types": "./dist/types/compile.d.ts",
|
|
"development": "./dist/esm/development/compile.js",
|
|
"default": "./dist/esm/production/compile.js"
|
|
},
|
|
"./format": {
|
|
"types": "./dist/types/format.d.ts",
|
|
"development": "./dist/esm/development/format.js",
|
|
"default": "./dist/esm/production/format.js"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"compile.d.ts",
|
|
"format.d.ts"
|
|
],
|
|
"keywords": [
|
|
"icu",
|
|
"messageformat",
|
|
"i18n",
|
|
"internationalization",
|
|
"compiler",
|
|
"minify"
|
|
],
|
|
"dependencies": {
|
|
"@formatjs/icu-messageformat-parser": "^3.4.0"
|
|
},
|
|
"gitHead": "de4baeb465185133923b69c8da36457c9418d781"
|
|
}
|