{
  "name": "@mongrov/auth",
  "version": "0.7.2",
  "description": "Auth lifecycle, token management, and biometric gate for React Native / Expo apps",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/mongrov/mongrov-packages.git",
    "directory": "packages/auth"
  },
  "keywords": [
    "react-native",
    "expo",
    "auth",
    "jwt",
    "token-refresh",
    "biometric",
    "secure-store"
  ],
  "engines": {
    "node": ">=18"
  },
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "default": "./dist/index.js"
    },
    "./interceptor": {
      "types": "./dist/interceptor.d.ts",
      "import": "./dist/interceptor.js",
      "default": "./dist/interceptor.js"
    },
    "./social-auth": {
      "types": "./dist/social-auth.d.ts",
      "import": "./dist/social-auth.js",
      "default": "./dist/social-auth.js"
    }
  },
  "files": [
    "dist"
  ],
  "dependencies": {
    "jwt-decode": "^4.0.0",
    "xstate": "^5.30.0"
  },
  "peerDependencies": {
    "@react-native-google-signin/google-signin": ">=16",
    "axios": ">=1",
    "expo-apple-authentication": ">=7",
    "expo-local-authentication": ">=14",
    "expo-secure-store": ">=14",
    "react": ">=18",
    "react-native": ">=0.74",
    "react-native-mmkv": ">=3"
  },
  "peerDependenciesMeta": {
    "react-native-mmkv": {
      "optional": true
    },
    "expo-secure-store": {
      "optional": true
    },
    "expo-local-authentication": {
      "optional": true
    },
    "expo-apple-authentication": {
      "optional": true
    },
    "@react-native-google-signin/google-signin": {
      "optional": true
    },
    "axios": {
      "optional": true
    }
  },
  "devDependencies": {
    "@mongrov/core": "^0.4.0",
    "@react-native-google-signin/google-signin": "^16.1.2",
    "@testing-library/react": "^14.3.1",
    "@types/jest": "^29.5.12",
    "@types/react": "^18.2.0",
    "axios": "^1.13.2",
    "expo-apple-authentication": "^7.0.0",
    "jest": "^29.7.0",
    "jest-environment-jsdom": "^29.7.0",
    "react": "^18.2.0",
    "react-dom": "^18.3.1",
    "react-native": "^0.74.0",
    "ts-jest": "^29.1.2",
    "typescript": "^5.9.3"
  },
  "scripts": {
    "build": "tsc -p tsconfig.build.json",
    "clean": "rm -rf dist",
    "prebuild": "pnpm run clean",
    "test": "jest --coverage",
    "test:watch": "jest --watch",
    "typecheck": "tsc --noEmit"
  }
}