{
  "name": "@solana-mobile/mobile-wallet-adapter-walletlib",
  "description": "A React Native wrapper of the Solana Mobile, Mobile Wallet Adapter Wallet Library. Wallet apps can use this to handle dapp requests for signing and sending.",
  "version": "1.4.5",
  "author": "Michael Sulistio <mike.sulistio@solanamobile.com>",
  "repository": "https://github.com/solana-mobile/mobile-wallet-adapter",
  "license": "Apache-2.0",
  "exports": {
    "node": {
      "import": "./lib/esm/index.js",
      "require": "./lib/cjs/index.js"
    },
    "react-native": "./lib/esm/index.native.js",
    "types": "./lib/types/index.d.ts"
  },
  "main": "lib/esm/index",
  "module": "lib/esm/index",
  "react-native": "lib/esm/index.native",
  "types": "lib/types/index.d.ts",
  "type": "module",
  "files": [
    "android",
    "LICENSE",
    "lib",
    "src"
  ],
  "sideEffects": false,
  "publishConfig": {
    "access": "public"
  },
  "devDependencies": {
    "@solana/web3.js": "^1.98.4",
    "@types/react": "^19.2.18",
    "@types/react-native": "^0.69.3",
    "@wallet-standard/core": "^1.1.1",
    "react": "^19.2.8",
    "cross-env": "^10.1.0",
    "shx": "^0.4.0"
  },
  "peerDependencies": {
    "react-native": ">0.74"
  },
  "scripts": {
    "clean": "shx rm -rf lib/*",
    "build": "pnpm clean && tsdown --config tsdown.config.ts",
    "build:watch": "pnpm clean && tsdown --config tsdown.config.ts --watch",
    "check-types": "tsc -p tsconfig.json --noEmit",
    "postbuild": "printf '%s' '{\"type\":\"module\"}' > lib/esm/package.json",
    "example": "pnpm --cwd example",
    "bootstrap": "pnpm example && pnpm install && pnpm example pods"
  }
}