{
  "name": "@portone/react-native-sdk",
  "version": "0.6.0",
  "description": "PortOne SDK for React Native",
  "source": "./src/index.tsx",
  "main": "./lib/commonjs/index.js",
  "module": "./lib/module/index.js",
  "exports": {
    ".": {
      "import": {
        "types": "./lib/typescript/module/src/index.d.ts",
        "default": "./lib/module/index.js"
      },
      "require": {
        "types": "./lib/typescript/commonjs/src/index.d.ts",
        "default": "./lib/commonjs/index.js"
      }
    },
    "./plugin": "./app.plugin.js"
  },
  "files": [
    "src",
    "lib",
    "android",
    "ios",
    "cpp",
    "app.plugin.js",
    "*.podspec",
    "!ios/build",
    "!android/build",
    "!android/gradle",
    "!android/gradlew",
    "!android/gradlew.bat",
    "!android/local.properties",
    "!**/__tests__",
    "!**/__fixtures__",
    "!**/__mocks__",
    "!**/.*"
  ],
  "keywords": [
    "react-native",
    "ios",
    "android",
    "PortOne",
    "payment",
    "포트원",
    "결제 연동"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/portone-io/react-native-sdk.git"
  },
  "author": "portone <tech.support@portone-io> (https://github.com/portone-io)",
  "contributors": [
    "kiwiyou <kiwiyou@portone.io> (https://github.com/kiwiyou)"
  ],
  "license": "(Apache-2.0 OR MIT)",
  "bugs": {
    "url": "https://github.com/portone-io/react-native-sdk/issues"
  },
  "homepage": "https://github.com/portone-io/react-native-sdk#readme",
  "publishConfig": {
    "registry": "https://registry.npmjs.org/",
    "access": "public"
  },
  "devDependencies": {
    "@changesets/cli": "^2.27.11",
    "@commitlint/config-conventional": "^17.8.1",
    "@evilmartians/lefthook": "^1.10.0",
    "@expo/config-plugins": "^8.0.11",
    "@react-native/eslint-config": "^0.76.5",
    "@react-native/typescript-config": "^0.76.5",
    "@types/jest": "^29.5.14",
    "@types/react": "^18.3.18",
    "commitlint": "^19.6.1",
    "del-cli": "^5.1.0",
    "eslint": "^8.57.1",
    "eslint-config-prettier": "^9.1.0",
    "eslint-plugin-prettier": "^5.2.1",
    "jest": "^29.7.0",
    "prettier": "^3.4.2",
    "react": "18.2.0",
    "react-native": "^0.74.6",
    "react-native-builder-bob": "^0.30.3",
    "typescript": "<5.6.0"
  },
  "eslintConfig": {
    "root": true,
    "extends": [
      "@react-native",
      "prettier"
    ],
    "rules": {
      "react/react-in-jsx-scope": "off"
    }
  },
  "eslintIgnore": [
    "node_modules/",
    "lib/"
  ],
  "resolutions": {
    "@types/react": "^18.2.44"
  },
  "peerDependencies": {
    "@portone/browser-sdk": "*",
    "expo": "*",
    "react": "*",
    "react-native": "*",
    "react-native-webview": "*",
    "expo-intent-launcher": "*"
  },
  "jest": {
    "preset": "react-native",
    "modulePathIgnorePatterns": [
      "<rootDir>/example/node_modules",
      "<rootDir>/lib/"
    ]
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  },
  "prettier": {
    "quoteProps": "consistent",
    "singleQuote": true,
    "tabWidth": 2,
    "trailingComma": "es5",
    "useTabs": false,
    "semi": false,
    "endOfLine": "lf"
  },
  "react-native-builder-bob": {
    "source": "src",
    "output": "lib",
    "targets": [
      [
        "commonjs",
        {
          "esm": true
        }
      ],
      [
        "module",
        {
          "esm": true
        }
      ],
      [
        "typescript",
        {
          "project": "tsconfig.json",
          "esm": true
        }
      ]
    ]
  },
  "create-react-native-library": {
    "type": "library",
    "version": "0.41.0"
  },
  "scripts": {
    "test": "jest",
    "typecheck": "tsc -p ./tsconfig.json",
    "lint": "eslint \"**/*.{js,ts,tsx}\"",
    "clean": "del-cli lib"
  }
}