{
  "name": "@aptos-labs/wallet-adapter-react",
  "version": "5.0.4",
  "description": "Aptos Wallet Adapter React Provider",
  "main": "./dist/index.js",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "license": "Apache-2.0",
  "exports": {
    "types": "./dist/index.d.ts",
    "require": "./dist/index.js",
    "import": "./dist/index.mjs"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/aptos-labs/aptos-wallet-adapter.git"
  },
  "homepage": "https://github.com/aptos-labs/aptos-wallet-adapter",
  "bugs": {
    "url": "https://github.com/aptos-labs/aptos-wallet-adapter/issues"
  },
  "author": "aptoslabs.com",
  "keywords": [
    "Aptos",
    "Aptos Labs",
    "Wallet",
    "Wallet Adapter",
    "Wallet Adapter Provider",
    "React"
  ],
  "devDependencies": {
    "@types/react": "^18.3.3",
    "@types/react-dom": "^18.3.0",
    "eslint": "^8.15.0",
    "tsup": "^8.4.0",
    "typescript": "^5.4.5",
    "@aptos-labs/wallet-adapter-tsconfig": "0.0.2",
    "@aptos-labs/derived-wallet-solana": "0.2.3",
    "@aptos-labs/derived-wallet-ethereum": "0.1.3"
  },
  "dependencies": {
    "@radix-ui/react-slot": "^1.0.2",
    "@aptos-labs/wallet-adapter-core": "5.4.0"
  },
  "peerDependencies": {
    "react": "^18.0.0 || ^19.0.0",
    "@aptos-labs/derived-wallet-solana": "0.2.3",
    "@aptos-labs/derived-wallet-ethereum": "0.1.3"
  },
  "files": [
    "dist",
    "src",
    "!src/**.test.ts",
    "!src/**/__tests__"
  ],
  "scripts": {
    "build:bundle": "tsup src/index.tsx --format esm,cjs --sourcemap",
    "build:declarations": "tsc --emitDeclarationOnly --declaration --declarationMap",
    "build": "pnpm build:bundle && pnpm build:declarations",
    "dev": "tsup src/index.tsx --format esm,cjs --watch",
    "clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
    "lint": "TIMING=1 eslint \"src/**/*.ts*\""
  }
}