Files
klz-cables.com/.pnpm-store/v10/files/00/e958d762167715c057c2812d00f9feb5524caf56273fa75d585e178b2f67adf294783d097bdf1a85dfe98d2edf6c2fdfb90be25571680dbb7d25eea7436821
Marc Mintel 5397309103
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
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

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