zustand-debounce
Version:
**Lightweight** and **powerful** extension for [Zustand](https://github.com/pmndrs/zustand) providing debounced JSON state storage.
48 lines (47 loc) • 1.16 kB
JSON
{
"name": "zustand-debounce",
"version": "2.2.0",
"description": "",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"repository": "https://github.com/AbianS/zustand-debounce",
"homepage": "https://github.com/AbianS",
"files": ["dist"],
"scripts": {
"dev": "tsup --config tsup.config.ts --dts --watch",
"build": "tsup --config tsup.config.ts --dts",
"test": "jest",
"test:cov": "jest --coverage",
"size": "size-limit"
},
"keywords": ["zustand", "debounce", "zustand-debounce", "zustand debounce"],
"author": "AbianS",
"license": "MIT",
"devDependencies": {
"@size-limit/preset-small-lib": "^11.1.6",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.1",
"jest": "^29.7.0",
"size-limit": "^11.1.6",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsup": "^8.3.6",
"typescript": "^5.7.3"
},
"peerDependencies": {
"zustand": ">=4.0.0"
},
"size-limit": [
{
"path": "dist/index.mjs",
"limit": "5 KB"
}
]
}