{
  "name": "@txnlab/use-wallet-react",
  "version": "5.0.0",
  "publishConfig": {
    "access": "public",
    "provenance": true
  },
  "description": "React library for integrating Algorand wallets into decentralized applications",
  "author": "Doug Richar <drichar@gmail.com>",
  "license": "MIT",
  "engines": {
    "node": ">=22"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/TxnLab/use-wallet.git",
    "directory": "packages/frameworks/react"
  },
  "type": "module",
  "sideEffects": false,
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    }
  },
  "keywords": [
    "algorand",
    "wallet",
    "react"
  ],
  "files": [
    "dist"
  ],
  "dependencies": {
    "@tanstack/react-store": "0.9.1",
    "@txnlab/use-wallet": "5.0.0"
  },
  "devDependencies": {
    "@types/react": "19.2.14",
    "algosdk": "3.6.0",
    "jsdom": "26.1.0",
    "react": "19.2.4",
    "react-dom": "19.2.4",
    "tsdown": "0.21.0",
    "typescript": "5.9.3"
  },
  "peerDependencies": {
    "algosdk": "^3.0.0",
    "react": "^17.0.0 || ^18.0.0 || ^19.0.0",
    "react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0"
  },
  "scripts": {
    "build": "tsdown",
    "start": "tsdown --watch",
    "test": "vitest run",
    "test:watch": "vitest --watch",
    "lint": "eslint \"src/**/*.{js,ts,tsx}\"",
    "typecheck": "tsc --noEmit"
  }
}