{
  "version": "1.0.6",
  "license": "MIT",
  "main": "dist/index.js",
  "typings": "dist/index.d.ts",
  "files": [
    "dist",
    "/src/!(fixtures)/**/!(*.test).ts"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/kevineaton603/package-library.git"
  },
  "homepage": "https://github.com/kevineaton603/package-library/tree/master/packages/zustand-slice-factory",
  "bugs": {
    "url": "https://github.com/kevineaton603/package-library/issues"
  },
  "engines": {
    "node": ">=10"
  },
  "scripts": {
    "build": "node ./esbuild.config.js",
    "build:clean": "rimraf ./dist",
    "test": "jest",
    "lint": "eslint --max-warnings 0 src",
    "lint:fix": "eslint --fix src",
    "prepare": "husky intall && node ./esbuild.config.js",
    "size": "size-limit",
    "analyze": "size-limit --why",
    "setup:clean": "rimraf ./node_modules",
    "setup:install": "npm install",
    "setup:clean-install": "npm ci"
  },
  "peerDependencies": {
    "react": ">=16",
    "zustand": "~3"
  },
  "husky": {
    "hooks": {
      "pre-commit": "npm run lint"
    }
  },
  "prettier": {
    "printWidth": 80,
    "semi": true,
    "singleQuote": true,
    "trailingComma": "es5"
  },
  "name": "zustand-slice-factory",
  "author": "Kevin Eaton",
  "module": "dist/zustand-slice-factory.esm.js",
  "size-limit": [
    {
      "path": "dist/zustand-slice-factory.cjs.production.min.js",
      "limit": "10 KB"
    },
    {
      "path": "dist/zustand-slice-factory.esm.js",
      "limit": "10 KB"
    }
  ],
  "devDependencies": {
    "@size-limit/preset-small-lib": "^6.0.3",
    "@testing-library/react-hooks": "^7.0.2",
    "@types/jest": "^27.0.2",
    "@types/lodash.clonedeep": "^4.5.6",
    "@types/react": "^17.0.27",
    "@types/react-dom": "^17.0.9",
    "@typescript-eslint/eslint-plugin": "^5.2.0",
    "@typescript-eslint/parser": "^5.2.0",
    "esbuild": "^0.13.8",
    "esbuild-jest": "^0.5.0",
    "esbuild-node-externals": "^1.3.0",
    "esbuild-plugin-d.ts": "^1.0.6",
    "eslint": "^7.32.0",
    "eslint-config-airbnb": "^18.2.1",
    "eslint-config-airbnb-typescript": "^14.0.1",
    "eslint-plugin-import": "^2.25.2",
    "eslint-plugin-jsx-a11y": "^6.4.1",
    "eslint-plugin-react": "^7.26.1",
    "eslint-plugin-react-hooks": "^4.2.0",
    "husky": "^7.0.2",
    "jest": "^27.3.1",
    "react": "^17.0.2",
    "react-dom": "^17.0.2",
    "rimraf": "^3.0.2",
    "size-limit": "^5.0.5",
    "tslib": "^2.3.1",
    "typescript": "^4.4.3",
    "zustand": "^3.6.6"
  },
  "dependencies": {
    "lodash.clonedeep": "^4.5.0",
    "reselect": "^4.0.0"
  },
  "jest": {
    "transform": {
      "^.+\\.tsx?$": "esbuild-jest"
    },
    "verbose": true
  },
  "keywords": [
    "zustand",
    "store",
    "slice",
    "state",
    "redux",
    "state management"
  ],
  "description": "A light-weight package with generic factory functions for common slice data structures"
}
