{
  "name": "react-hook-breakpoints",
  "version": "5.1.0",
  "description": "A library that allows you to mount/unmount components depending on the viewport size. Welcome to the next level of responsive React applications.",
  "main": "lib/cjs/index.js",
  "module": "lib/esm/index.js",
  "types": "lib/types/index.d.ts",
  "repository": {
    "type": "git",
    "url": "https://github.com/m-hoffmann/react-hook-breakpoints.git"
  },
  "keywords": [
    "responsive",
    "breakpoints",
    "breakpoint",
    "react",
    "react-breakpoints",
    "media queries",
    "media query",
    "matchMedia"
  ],
  "files": [
    "src/**/*.ts",
    "src/**/*.tsx",
    "lib/**/*.*"
  ],
  "sideEffects": false,
  "scripts": {
    "clean": "rimraf lib",
    "lint": "eslint ./src/**/*.*",
    "build": "npm run compile",
    "compile": "npm run compile:commonjs && npm run compile:es",
    "compile:commonjs": "tsc --project ./tsconfig.cjs.json",
    "compile:es": "tsc --project ./tsconfig.esm.json",
    "prepublishOnly": "npm run clean && npm run lint && npm run test && npm run compile",
    "prettier": "prettier --write ./src",
    "pretty-quick": "pretty-quick --staged",
    "precommit": "npm run pretty-quick",
    "test": "jest",
    "test:coverage": "jest --coverage"
  },
  "peerDependencies": {
    "react": "^16.14.0-0 || ^17.0.0-0"
  },
  "author": "Markus Hoffmann",
  "contributors": [
    "Erik Hellman",
    "Aleksey Makas"
  ],
  "license": "MIT",
  "devDependencies": {
    "@testing-library/jest-dom": "^5.16.1",
    "@testing-library/react": "^12.1.2",
    "@testing-library/react-hooks": "^7.0.2",
    "@types/hoist-non-react-statics": "^3.3.1",
    "@types/jest": "^27.4.0",
    "@types/lodash.debounce": "^4.0.6",
    "@types/react": "^17.0.38",
    "@types/react-dom": "^17.0.11",
    "@typescript-eslint/eslint-plugin": "^5.10.1",
    "@typescript-eslint/parser": "^5.10.1",
    "cross-env": "7.0.3",
    "eslint": "^8.7.0",
    "eslint-plugin-react": "^7.28.0",
    "eslint-plugin-react-hooks": "^4.3.0",
    "husky": "7.0.4",
    "jest": "^27.4.7",
    "prettier": "^2.5.1",
    "pretty-quick": "3.1.3",
    "react": "^17.0.2",
    "react-dom": "^17.0.2",
    "rimraf": "3.0.2",
    "ts-jest": "^27.1.3",
    "typescript": "^4.5.5"
  },
  "dependencies": {
    "hoist-non-react-statics": "^3.3.2",
    "lodash.debounce": "^4.0.8",
    "prop-types": "^15.8.1"
  }
}
