{
  "name": "zundo",
  "version": "2.3.0",
  "private": false,
  "description": "🍜 undo/redo middleware for zustand",
  "keywords": [
    "undo",
    "redo",
    "history",
    "middleware",
    "zustand",
    "react"
  ],
  "homepage": "https://github.com/charkour/zundo",
  "bugs": {
    "url": "https://github.com/charkour/zundo/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/charkour/zundo.git"
  },
  "funding": {
    "type": "individual",
    "url": "https://github.com/sponsors/charkour"
  },
  "license": "MIT",
  "author": "Charles Kornoelje",
  "type": "module",
  "exports": {
    "import": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "require": {
      "types": "./dist/index.d.cts",
      "default": "./dist/index.cjs"
    }
  },
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "files": [
    "dist",
    "package.json"
  ],
  "devDependencies": {
    "prettier": "3.3.3",
    "tsup": "8.3.5",
    "typescript": "5.6.3",
    "zustand": "5.0.1"
  },
  "peerDependencies": {
    "zustand": "^4.3.0 || ^5.0.0"
  },
  "peerDependenciesMeta": {
    "zustand": {
      "optional": false
    }
  },
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "format": "prettier --write \"**/*.{ts,tsx,md}\"",
    "size": "pnpm --filter size size",
    "test": "pnpm --filter tests test",
    "test:ci": "pnpm --filter tests test:ci"
  }
}