{
  "name": "react-native-msal2",
  "version": "1.0.18",
  "license": "MIT",
  "description": "MSAL React Native wrapper for iOS and Android",
  "homepage": "https://github.com/bittu/react-native-msal2#readme",
  "author": "Sandeep Vemula <vsandeep414@gmail.com>",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/bittu/react-native-msal2.git"
  },
  "scripts": {
    "app": "node create-app.js",
    "app:install": "npm i --no-save $(npm pack . | tail -1)  --prefix app",
    "build": "esbuild index.tsx --outdir=dist --bundle --format=esm --sourcemap --external:react-native --external:react && tsc",
    "watch": "npm-run-all --parallel build:watch copy",
    "copy": "cpx 'dist/**/*' app/node_modules/react-native-msal2/dist --watch",
    "build:watch": "esbuild index.tsx --watch --outdir=dist --bundle --format=esm --sourcemap --external:react-native --external:react",
    "test": "jest",
    "test:watch": "jest --watchAll",
    "lint": "eslint . --fix --ext .js,.jsx,.ts,.tsx",
    "format": "prettier \"{,!(app|dist)/**/}*.{ts,tsx}\" --write",
    "prepublishOnly": "npm run build"
  },
  "devDependencies": {
    "@react-native/babel-preset": "^0.74.0",
    "@react-native/eslint-config": "^0.74.0",
    "@react-native/typescript-config": "^0.74.0",
    "@types/jest": "^29.5.11",
    "@types/node": "^20.11.8",
    "@types/react": "^18.2.48",
    "@types/react-native": "^0.72.8",
    "@types/react-test-renderer": "^18.0.7",
    "babel-jest": "^29.7.0",
    "cpx": "^1.5.0",
    "esbuild": "^0.20.0",
    "eslint": "^8.56.0",
    "eslint-plugin-flowtype": "^8.0.3",
    "eslint-plugin-prettier": "^5.1.3",
    "jest": "^29.7.0",
    "npm-run-all": "^4.1.5",
    "prettier": "^3.2.4",
    "react": "^18.2.0",
    "react-native": "^0.73.2",
    "react-test-renderer": "^18.2.0",
    "typescript": "^5.3.3"
  },
  "peerDependencies": {
    "react": ">= 18",
    "react-native": ">= 0.70"
  },
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "source": "src/index",
  "prettier": {
    "printWidth": 100,
    "semi": false,
    "singleQuote": true
  },
  "eslintConfig": {
    "extends": "@react-native",
    "rules": {
      "semi": 0
    },
    "ignorePatterns": [
      "dist",
      "app"
    ],
    "root": true
  },
  "jest": {
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js",
      "jsx",
      "json",
      "node"
    ],
    "moduleNameMapper": {
      "react-dom": "react-native",
      "react-native-msal2": "<rootDir>"
    },
    "preset": "react-native",
    "testPathIgnorePatterns": [
      "/app/"
    ],
    "transformIgnorePatterns": [
      "node_modules/(?!react-native|@react-native)"
    ]
  },
  "publishConfig": {
    "provenance": false
  }
}
