UNPKG

@txnlab/use-wallet-react

Version:

React library for integrating Algorand wallets into decentralized applications

88 lines 2.1 kB
{ "name": "@txnlab/use-wallet-react", "version": "4.3.0", "description": "React library for integrating Algorand wallets into decentralized applications", "author": "Doug Richar <drichar@gmail.com>", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/txnlab/use-wallet.git", "directory": "packages/use-wallet-react" }, "type": "module", "main": "./dist/index.cjs", "module": "./dist/index.js", "exports": "./dist/index.js", "types": "./dist/index.d.ts", "keywords": [ "algorand", "wallet", "walletconnect", "pera", "defly", "exodus", "algosdk", "algokit", "kmd", "react" ], "files": [ "dist" ], "dependencies": { "@tanstack/react-store": "0.7.3", "@txnlab/use-wallet": "4.3.0" }, "devDependencies": { "@types/react": "18.3.23", "algosdk": "3.3.1", "jsdom": "26.1.0", "react": "18.3.1", "react-dom": "18.3.1", "tsup": "8.5.0", "typescript": "5.8.3" }, "peerDependencies": { "@blockshake/defly-connect": "^1.2.1", "@magic-ext/algorand": "^24.1.0", "@walletconnect/modal": "^2.7.0", "@perawallet/connect": "^1.4.1", "@walletconnect/sign-client": "^2.21.4", "algosdk": "^3.0.0", "lute-connect": "^1.6.1", "magic-sdk": "^29.1.0", "react": "^17.0.0 || ^18.0.0 || ^19.0.0", "react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0" }, "peerDependenciesMeta": { "@blockshake/defly-connect": { "optional": true }, "@magic-ext/algorand": { "optional": true }, "@perawallet/connect": { "optional": true }, "@walletconnect/modal": { "optional": true }, "@walletconnect/sign-client": { "optional": true }, "lute-connect": { "optional": true }, "magic-sdk": { "optional": true } }, "scripts": { "build": "tsup", "start": "tsup src/index.tsx --watch", "test": "vitest run", "test:watch": "vitest --watch", "lint": "eslint -c \"../../.eslintrc.json\" \"**/*.{js,ts}\"", "typecheck": "tsc --noEmit" } }