{
  "name": "react-native-input-select",
  "version": "2.1.13",
  "description": "A customizable dropdown selection package for react-native for android and iOS with multiple select and search capabilities.",
  "main": "lib/commonjs/index",
  "module": "lib/module/index",
  "types": "lib/typescript/src/index.d.ts",
  "react-native": "src/index",
  "source": "src/index",
  "files": [
    "src",
    "lib",
    "android",
    "ios",
    "cpp",
    "react-native-select.podspec",
    "!lib/typescript/example",
    "!android/build",
    "!ios/build",
    "!**/__tests__",
    "!**/__fixtures__",
    "!**/__mocks__"
  ],
  "scripts": {
    "test": "jest",
    "test:coverage": "jest --coverage",
    "typescript": "tsc --noEmit",
    "lint": "eslint \"**/*.{js,ts,tsx}\"",
    "prepare": "bob build",
    "release": "release-it --ci",
    "next-release": "release-it prerelease --preRelease=next",
    "example": "yarn --cwd example",
    "bootstrap": "yarn example && yarn",
    "start": "yarn example start",
    "android": "yarn example android",
    "ios": "yarn example ios",
    "clean": "yarn example clean",
    "troubleshoot": "react-native doctor",
    "watchman:clear": "watchman watch-del-all"
  },
  "keywords": [
    "react-native",
    "ios",
    "android",
    "dropdown",
    "selection",
    "dropdown menu",
    "multiple select",
    "picker",
    "pull-down menu",
    "combo box",
    "list box"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/azeezat/react-native-select.git"
  },
  "author": "Azeezat <azeezat94@gmail.com> (https://github.com/azeezat)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/azeezat/react-native-select/issues"
  },
  "homepage": "https://github.com/azeezat/react-native-select#readme",
  "publishConfig": {
    "registry": "https://registry.npmjs.org/"
  },
  "devDependencies": {
    "@babel/plugin-transform-private-methods": "^7.24.7",
    "@babel/plugin-transform-private-property-in-object": "^7.24.7",
    "@babel/preset-typescript": "^7.24.7",
    "@commitlint/config-conventional": "^19.2.2",
    "@react-native-community/eslint-config": "^3.2.0",
    "@react-native/babel-preset": "^0.80.0",
    "@release-it/conventional-changelog": "^8.0.1",
    "@testing-library/jest-dom": "^6.4.8",
    "@testing-library/react-native": "^12.9.0",
    "@types/jest": "^29.5.13",
    "@types/react": "^19.1.0",
    "@types/react-native": "^0.73.0",
    "@types/react-test-renderer": "^19.1.0",
    "babel-plugin-module-resolver": "^5.0.2",
    "commitlint": "^19.3.0",
    "eslint": "^8.0.0",
    "eslint-config-prettier": "^7.0.0",
    "eslint-plugin-prettier": "^3.1.3",
    "husky": "^9.0.11",
    "jest": "^29.7.0",
    "prettier": "^2.0.5",
    "react": "19.1.0",
    "react-native": "0.80.0",
    "react-native-builder-bob": "^0.23.2",
    "react-test-renderer": "^19.1.0",
    "release-it": "^19.2.2",
    "typescript": "^5.4.5"
  },
  "peerDependencies": {
    "react": "*",
    "react-native": "*"
  },
  "dependencies": {
    "react-native-safe-area-context": "^5.6.1"
  },
  "jest": {
    "preset": "react-native",
    "modulePathIgnorePatterns": [
      "<rootDir>/example/node_modules",
      "<rootDir>/lib/"
    ],
    "setupFilesAfterEnv": [
      "<rootDir>/jest-setup.tsx"
    ],
    "coverageReporters": [
      "html",
      "text",
      "lcov"
    ],
    "coverageThreshold": {
      "global": {
        "branches": 88,
        "functions": 92,
        "lines": 92,
        "statements": 92
      }
    }
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  },
  "eslintConfig": {
    "root": true,
    "extends": [
      "@react-native-community",
      "prettier"
    ],
    "rules": {
      "prettier/prettier": [
        "error",
        {
          "quoteProps": "consistent",
          "singleQuote": true,
          "tabWidth": 2,
          "trailingComma": "es5",
          "useTabs": false
        }
      ]
    }
  },
  "eslintIgnore": [
    "node_modules/",
    "lib/",
    "coverage/",
    "src/__tests__/**"
  ],
  "prettier": {
    "quoteProps": "consistent",
    "singleQuote": true,
    "tabWidth": 2,
    "trailingComma": "es5",
    "useTabs": false
  },
  "react-native-builder-bob": {
    "source": "src",
    "output": "lib",
    "targets": [
      "commonjs",
      "module",
      [
        "typescript",
        {
          "project": "tsconfig.build.json"
        }
      ]
    ]
  }
}
