{
  "version": "0.2.0",
  "license": "MIT",
  "main": "dist/index.js",
  "typings": "dist/index.d.ts",
  "files": [
    "dist",
    "src"
  ],
  "engines": {
    "node": ">=10"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/yasintz/zustand-computed-state"
  },
  "husky": {
    "hooks": {
      "pre-commit": "tsdx lint"
    }
  },
  "prettier": {
    "printWidth": 80,
    "semi": true,
    "singleQuote": true,
    "trailingComma": "es5"
  },
  "name": "zustand-computed-state",
  "author": "Yasin",
  "module": "dist/index.mjs",
  "size-limit": [
    {
      "path": "dist/index.js",
      "limit": "1 KB"
    },
    {
      "path": "dist/index.mjs",
      "limit": "1 KB"
    }
  ],
  "devDependencies": {
    "@size-limit/preset-small-lib": "^11.1.2",
    "husky": "^9.0.11",
    "oxlint": "^1.25.0",
    "react": "^18.2.0",
    "size-limit": "^11.1.2",
    "tsdown": "^0.15.12",
    "tsdx": "^0.14.1",
    "tslib": "^2.6.2",
    "typescript": "^5.4.3",
    "vitest": "^4.0.6",
    "zustand": "^5.0.8"
  },
  "peerDependencies": {
    "zustand": "^5.0.8"
  },
  "scripts": {
    "start": "tsdown --watch",
    "build": "tsdown",
    "test": "vitest run",
    "lint": "oxlint",
    "type-check": "tsc --noEmit",
    "size": "size-limit",
    "analyze": "size-limit --why"
  }
}