{
  "name": "react-hook-kit",
  "version": "1.7.5",
  "description": "A library of custom React hooks written in TypeScript. It includes common and useful hooks like useForm, useFetch, useLocalStorage, and others, simplifying and accelerating the development process.",
  "main": "dist/cjs/index.js",
  "module": "dist/es/index.js",
  "types": "src/types/index.d.ts",
  "scripts": {
    "build": "rm -rf dist && tsc --outDir dist/cjs --module commonjs && tsc --outDir dist/es --module es6",
    "test": "jest",
    "lint:js": "eslint --ext .js,.jsx,.ts,.tsx src/"
  },
  "files": [
    "dist",
    "src"
  ],
  "peerDependencies": {
    "react": "^17.0.0"
  },
  "devDependencies": {
    "@microsoft/eslint-formatter-sarif": "^3.0.0",
    "@testing-library/react": "^11.2.7",
    "@testing-library/react-hooks": "^8.0.1",
    "@types/jest": "^29.5.3",
    "@types/node-fetch": "^2.6.4",
    "@types/react": "^17.0.0",
    "@typescript-eslint/eslint-plugin": "^6.1.0",
    "@typescript-eslint/parser": "^6.1.0",
    "eslint": "^8.45.0",
    "eslint-config-prettier": "^8.8.0",
    "eslint-plugin-eslint-plugin": "^5.1.1",
    "eslint-plugin-prettier": "^5.0.0",
    "eslint-plugin-react": "^7.33.0",
    "jest": "^29.6.1",
    "jest-environment-jsdom": "^29.6.1",
    "jest-fetch-mock": "^3.0.3",
    "prettier": "^3.0.0",
    "react-dom": "^17.0.0",
    "ts-jest": "^29.1.1",
    "ts-node": "^10.9.1",
    "typescript": "^5.1.6"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/sdr34/react-hook-kit.git"
  },
  "keywords": [
    "React",
    "React Hooks",
    "Custom Hooks",
    "TypeScript",
    "JavaScript",
    "Web Development",
    "useForm",
    "useFetch",
    "useLocalStorage",
    "useDebounce",
    "useThrottle",
    "useOnClickOutside"
  ],
  "author": "Dmitry Gorschkov (dmgorschkov@mail.ru)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/sdr34/react-hook-kit/issues"
  },
  "homepage": "https://github.com/sdr34/react-hook-kit#readme"
}
