@txnlab/use-wallet
Version:
TypeScript library for integrating Algorand wallets into decentralized applications
88 lines • 2.24 kB
JSON
{
"name": "@txnlab/use-wallet",
"version": "4.0.1",
"description": "TypeScript 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"
},
"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"
],
"files": [
"dist"
],
"dependencies": {
"@tanstack/store": "0.7.0"
},
"devDependencies": {
"@agoralabs-sh/avm-web-provider": "1.7.0",
"@blockshake/defly-connect": "1.2.1",
"@magic-ext/algorand": "23.20.0",
"@magic-sdk/provider": "28.20.0",
"@perawallet/connect": "1.4.1",
"@types/node": "20.11.30",
"@walletconnect/modal": "2.7.0",
"@walletconnect/modal-core": "2.7.0",
"@walletconnect/sign-client": "2.19.2",
"@walletconnect/types": "2.19.2",
"algosdk": "3.2.0",
"lute-connect": "1.5.1",
"magic-sdk": "28.21.1",
"tsup": "8.4.0",
"typescript": "5.8.2"
},
"peerDependencies": {
"@agoralabs-sh/avm-web-provider": "^1.7.0",
"@blockshake/defly-connect": "^1.2.1",
"@perawallet/connect": "^1.4.1",
"@walletconnect/modal": "^2.7.0",
"@walletconnect/sign-client": "^2.19.2",
"algosdk": "^3.0.0",
"lute-connect": "^1.5.1"
},
"peerDependenciesMeta": {
"@agoralabs-sh/avm-web-provider": {
"optional": true
},
"@blockshake/defly-connect": {
"optional": true
},
"@perawallet/connect": {
"optional": true
},
"@walletconnect/modal": {
"optional": true
},
"@walletconnect/sign-client": {
"optional": true
},
"lute-connect": {
"optional": true
}
},
"scripts": {
"build": "tsup",
"start": "tsup src/index.ts --watch",
"test": "vitest run",
"test:watch": "pnpm run test --watch",
"lint": "eslint -c \"../../.eslintrc.json\" \"**/*.{js,ts}\"",
"typecheck": "tsc --noEmit"
}
}