{
  "name": "react-ios-keyboard-viewport",
  "version": "0.1.0",
  "description": "A React hook that dynamically adjusts element positioning during iOS keyboard display, utilizing the Visual Viewport API for precise calculations.",
  "author": "RyoSogawa",
  "license": "MIT",
  "keywords": [
    "react",
    "react-hook",
    "ios",
    "keyboard",
    "visual-viewport",
    "typescript"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/RyoSogawa/react-ios-keyboard-viewport.git"
  },
  "homepage": "https://github.com/RyoSogawa/react-ios-keyboard-viewport",
  "bugs": {
    "url": "https://github.com/RyoSogawa/react-ios-keyboard-viewport/issues"
  },
  "files": [
    "lib"
  ],
  "main": "./lib/index.js",
  "module": "./lib/index.module.js",
  "types": "./lib/index.d.ts",
  "peerDependencies": {
    "react": ">=17.0.0",
    "react-dom": ">=17.0.0"
  },
  "devDependencies": {
    "@storybook/addon-essentials": "^7.4.6",
    "@storybook/addon-interactions": "^7.4.6",
    "@storybook/addon-links": "^7.4.6",
    "@storybook/addon-onboarding": "^1.0.8",
    "@storybook/blocks": "^7.4.6",
    "@storybook/react": "^7.4.6",
    "@storybook/react-vite": "^7.4.6",
    "@storybook/testing-library": "^0.2.2",
    "@types/react": "^18.2.28",
    "@types/react-dom": "^18.2.13",
    "@typescript-eslint/eslint-plugin": "^6.7.5",
    "@typescript-eslint/parser": "^6.7.5",
    "eslint": "^8.51.0",
    "eslint-config-airbnb": "^19.0.4",
    "eslint-config-airbnb-typescript": "^17.1.0",
    "eslint-config-prettier": "^9.0.0",
    "eslint-plugin-import": "^2.28.1",
    "eslint-plugin-jsx-a11y": "^6.7.1",
    "eslint-plugin-react": "^7.33.2",
    "eslint-plugin-react-hooks": "^4.6.0",
    "eslint-plugin-storybook": "^0.6.15",
    "microbundle": "^0.15.1",
    "prettier": "^3.0.3",
    "react": "^18.2.0",
    "react-dom": "^18.2.0",
    "rimraf": "^5.0.5",
    "storybook": "^7.4.6",
    "typescript": "^5.2.2"
  },
  "scripts": {
    "prebuild": "rimraf ./lib",
    "build": "microbundle --jsx React.createElement --no-sourcemap --compress --tsconfig ./tsconfig.build.json",
    "preversion": "pnpm lint",
    "version": "pnpm format && git add -A src",
    "postversion": "git push && git push --tags",
    "format": "prettier --write \"(src|stories)/*.(js|ts|jsx|tsx)\"",
    "lint": "eslint ./src ./stories",
    "lint:fix": "yarn lint --fix",
    "test": "tsc --noEmit && yarn lint",
    "storybook": "storybook dev -p 6006",
    "build-storybook": "storybook build"
  }
}