zustand-debounce
Version:
**Lightweight** and **powerful** extension for [Zustand](https://github.com/pmndrs/zustand) providing debounced JSON state storage.
55 lines • 1.22 kB
JSON
{
"name": "zustand-debounce",
"version": "2.3.1",
"description": "",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"repository": "https://github.com/AbianS/zustand-debounce",
"homepage": "https://abians.github.io/zustand-debounce/",
"files": [
"dist"
],
"keywords": [
"zustand",
"debounce",
"zustand-debounce",
"zustand debounce"
],
"author": "AbianS",
"license": "MIT",
"devDependencies": {
"@size-limit/preset-small-lib": "12.0.1",
"@types/jest": "30.0.0",
"@types/node": "25.5.2",
"jest": "30.3.0",
"size-limit": "12.0.1",
"ts-jest": "29.4.9",
"ts-node": "10.9.2",
"tsup": "8.5.1",
"typescript": "6.0.2"
},
"peerDependencies": {
"zustand": ">=4.0.0"
},
"size-limit": [
{
"path": "dist/index.mjs",
"limit": "5 KB"
}
],
"scripts": {
"dev": "tsup --config tsup.config.ts --watch",
"build": "tsup --config tsup.config.ts",
"test": "jest",
"test:cov": "jest --coverage",
"size": "size-limit"
}
}