{
  "name": "react-window-size-listener",
  "version": "2.1.0",
  "description": "Minimalistic React hook for listening to window resize events with built-in debouncing.",
  "source": "src/index.ts",
  "main": "dist/index.js",
  "module": "dist/index.module.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "require": "./dist/index.js",
      "import": "./dist/index.module.js",
      "default": "./dist/index.module.js"
    }
  },
  "sideEffects": false,
  "author": "Cesar Andreu <cesarandreu@gmail.com>, rewrite by Krunoslav Banovac <kunokdev@gmail.com>",
  "license": "MIT",
  "homepage": "https://github.com/kunokdev/react-window-size-listener",
  "repository": {
    "type": "git",
    "url": "git://github.com/kunokdev/react-window-size-listener.git"
  },
  "bugs": {
    "url": "https://github.com/kunokdev/react-window-size-listener/issues"
  },
  "peerDependencies": {
    "react": ">=16.8.0"
  },
  "devDependencies": {
    "@testing-library/react": "^14.0.0",
    "@types/react": "^18.0.0",
    "@types/react-dom": "^18.0.0",
    "jsdom": "^22.0.0",
    "microbundle": "^0.15.1",
    "react": "^18.2.0",
    "react-dom": "^18.2.0",
    "typescript": "^5.0.0",
    "vitest": "^0.34.0"
  },
  "scripts": {
    "build": "microbundle",
    "dev": "microbundle watch",
    "test": "vitest run"
  },
  "keywords": [
    "react",
    "hook",
    "window",
    "resize",
    "size",
    "listener",
    "viewport",
    "typescript"
  ]
}