{
  "name": "react-window-decorators",
  "version": "1.0.8",
  "private": false,
  "license": "MIT",
  "main": "dist/cjs/index.js",
  "module": "dist/esm/index.js",
  "types": "dist/esm/index.d.ts",
  "description": "Two decorators (higher order components) that inject 'window' scroll position, dimensions, orientation and breakpoint to your component's props.",
  "exports": {
    ".": {
      "import": "./dist/esm/index.js",
      "require": "./dist/cjs/index.js"
    }
  },
  "scripts": {
    "clean": "rm -rf dist",
    "build:esm": "tsc -p tsconfig.json && echo '{ \"type\": \"module\" }' > dist/esm/package.json",
    "build:cjs": "tsc -p tsconfig-cjs.json && echo '{ \"type\": \"commonjs\" }' > dist/cjs/package.json",
    "build": "npm run clean && npm run build:esm && npm run build:cjs && npm run build:docs",
    "start": "esbuild docs/src/docs.tsx --bundle --tsconfig=tsconfig-demo.json --servedir=docs --outdir=docs/build",
    "build:docs": "esbuild docs/src/docs.tsx --bundle --tsconfig=tsconfig-demo.json --outdir=docs/build --minify --sourcemap",
    "prepublishOnly": "npm run build"
  },
  "devDependencies": {
    "@types/react": "^18.0.21",
    "@types/react-dom": "^18.0.6",
    "esbuild": "^0.15.10",
    "typescript": "^4.8.4"
  },
  "dependencies": {
    "is-touch-device": "^1.0.1",
    "prop-types": "^15.8.1",
    "window-scroll-manager": "^1.1.4"
  },
  "peerDependencies": {
    "react": ">=15.5.4",
    "react-dom": ">=15.5.4"
  },
  "repository": {
    "type": "git",
    "url": "git+ssh://git@github.com/Stanko/react-window-decorators.git"
  },
  "keywords": [
    "react"
  ],
  "author": "Stanko",
  "bugs": {
    "url": "https://github.com/Stanko/react-window-decorators/issues"
  },
  "homepage": "https://github.com/Stanko/react-window-decorators#readme",
  "files": [
    "dist/",
    "CHANGELOG.md"
  ]
}
