{
  "name": "@th3rdwave/react-navigation-bottom-sheet",
  "version": "0.3.2",
  "description": "Bottom sheet component for React Navigation",
  "main": "lib/commonjs/index",
  "module": "lib/module/index",
  "types": "lib/typescript/index.d.ts",
  "react-native": "src/index",
  "source": "src/index",
  "files": [
    "src",
    "lib",
    "!lib/typescript/example",
    "!**/__tests__",
    "!**/__fixtures__",
    "!**/__mocks__"
  ],
  "scripts": {
    "test": "jest",
    "typescript": "tsc --noEmit",
    "lint": "eslint \"**/*.{js,ts,tsx}\"",
    "prepare": "bob build",
    "release": "release-it",
    "example": "yarn --cwd example",
    "pods": "cd example && pod-install --quiet"
  },
  "keywords": [
    "react-native",
    "react-navigation",
    "bottom-sheet"
  ],
  "repository": "https://github.com/th3rdwave/react-navigation-bottom-sheet",
  "author": "Janic Duplessis <janicduplessis@gmail.com> (https://github.com/janicduplessis)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/th3rdwave/react-navigation-bottom-sheet/issues"
  },
  "homepage": "https://github.com/th3rdwave/react-navigation-bottom-sheet#readme",
  "publishConfig": {
    "registry": "https://registry.npmjs.org/"
  },
  "devDependencies": {
    "@gorhom/bottom-sheet": "^4.6.3",
    "@react-native-community/eslint-config": "^3.2.0",
    "@react-navigation/native": "^6.1.17",
    "@release-it/conventional-changelog": "^8.0.1",
    "@types/jest": "^29.5.12",
    "@types/react": "~18.3.3",
    "@types/react-native": "0.67.8",
    "eslint": "^8.57.0",
    "eslint-config-prettier": "^9.1.0",
    "eslint-plugin-prettier": "^5.1.3",
    "jest": "^29.7.0",
    "pod-install": "^0.2.2",
    "prettier": "^3.2.5",
    "react": "18.3.1",
    "react-native": "0.74.1",
    "react-native-builder-bob": "^0.23.2",
    "react-native-safe-area-context": "^4.10.1",
    "react-native-screens": "^3.31.1",
    "release-it": "^17.3.0",
    "typescript": "^5.4.5"
  },
  "peerDependencies": {
    "react": "*",
    "react-native": "*",
    "react-native-screens": "*",
    "react-native-safe-area-context": "*",
    "@react-navigation/native": "*",
    "@gorhom/bottom-sheet": "*"
  },
  "jest": {
    "preset": "react-native",
    "modulePathIgnorePatterns": [
      "<rootDir>/example/node_modules",
      "<rootDir>/lib/"
    ]
  },
  "release-it": {
    "git": {
      "commitMessage": "chore: release ${version}",
      "tagName": "v${version}"
    },
    "npm": {
      "publish": true
    },
    "github": {
      "release": true
    },
    "plugins": {
      "@release-it/conventional-changelog": {
        "preset": "angular"
      }
    }
  },
  "eslintConfig": {
    "root": true,
    "extends": [
      "@react-native-community",
      "prettier"
    ],
    "rules": {
      "prettier/prettier": [
        "error",
        {
          "quoteProps": "consistent",
          "singleQuote": true,
          "tabWidth": 2,
          "trailingComma": "all",
          "useTabs": false
        }
      ]
    }
  },
  "eslintIgnore": [
    "node_modules/",
    "lib/"
  ],
  "prettier": {
    "quoteProps": "consistent",
    "singleQuote": true,
    "tabWidth": 2,
    "trailingComma": "all",
    "useTabs": false
  },
  "react-native-builder-bob": {
    "source": "src",
    "output": "lib",
    "targets": [
      "commonjs",
      "module",
      [
        "typescript",
        {
          "project": "tsconfig.build.json"
        }
      ]
    ]
  }
}
