Files
klz-cables.com/.pnpm-store/v10/files/6a/4c59cde46945f6a4e9f25f948269bae78251a2a245b16d3788b3afff1780735aa57f79fb9778757b2cca3beb85da52b82812579503ff39890315b08becede8
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": "state-local",
"version": "1.0.7",
"description": "Tiny, simple, and robust technique for defining and acting with local states",
"main": "lib/cjs/state-local.js",
"module": "lib/es/state-local.js",
"unpkg": "lib/umd/state-local.min.js",
"jsdelivr": "lib/umd/state-local.min.js",
"types": "lib/types.d.ts",
"author": "Suren Atoyan <contact@surenatoyan.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/suren-atoyan/state-local"
},
"bugs": {
"url": "https://github.com/suren-atoyan/state-local/issues"
},
"homepage": "https://github.com/suren-atoyan/state-local#readme",
"keywords": [
"state",
"state management",
"local state"
],
"scripts": {
"test": "jest",
"test-watch": "npm run build && jest --watch",
"coverage": "jest --collect-coverage",
"lint": "npx eslint src",
"prepublish": "npm test && npm run lint && npm run build",
"build": "rollup -c && cp ./src/types.d.ts ./lib/"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"husky": {
"hooks": {
"pre-commit": "npm test && npm run lint"
}
},
"devDependencies": {
"@babel/core": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.1",
"@rollup/plugin-replace": "^2.3.4",
"babel-jest": "^26.2.2",
"babel-loader": "^8.1.0",
"eslint": "^7.6.0",
"husky": "^4.2.5",
"jest": "^26.2.2",
"rollup": "^2.35.1",
"rollup-plugin-terser": "^7.0.2"
},
"dependencies": {}
}