@d13co/use-wallet 4.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,142 @@
1
+ {
2
+ "name": "@d13co/use-wallet",
3
+ "version": "4.5.0",
4
+ "description": "TypeScript library for integrating Algorand wallets into decentralized applications",
5
+ "author": "Doug Richar <drichar@gmail.com>",
6
+ "license": "MIT",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/txnlab/use-wallet.git",
10
+ "directory": "packages/use-wallet"
11
+ },
12
+ "type": "module",
13
+ "main": "./dist/index.cjs",
14
+ "module": "./dist/index.js",
15
+ "exports": "./dist/index.js",
16
+ "types": "./dist/index.d.ts",
17
+ "keywords": [
18
+ "algorand",
19
+ "wallet",
20
+ "walletconnect",
21
+ "pera",
22
+ "defly",
23
+ "exodus",
24
+ "algosdk",
25
+ "algokit",
26
+ "kmd",
27
+ "metamask",
28
+ "rainbow",
29
+ "web3auth"
30
+ ],
31
+ "files": [
32
+ "dist"
33
+ ],
34
+ "dependencies": {
35
+ "@tanstack/store": "0.8.0"
36
+ },
37
+ "devDependencies": {
38
+ "@agoralabs-sh/avm-web-provider": "1.7.0",
39
+ "@algorandfoundation/algokit-utils": "9.2.0",
40
+ "@blockshake/defly-connect": "1.2.1",
41
+ "@magic-ext/algorand": "24.4.2",
42
+ "@magic-sdk/provider": "29.5.0",
43
+ "@metamask/sdk": "0.33.1",
44
+ "@perawallet/connect": "1.4.1",
45
+ "@rainbow-me/rainbowkit": "^2.2.0",
46
+ "@types/node": "20.11.30",
47
+ "@walletconnect/modal": "2.7.0",
48
+ "@walletconnect/modal-core": "2.7.0",
49
+ "@walletconnect/sign-client": "2.23.4",
50
+ "@walletconnect/types": "2.23.4",
51
+ "@web3auth/base": "9.7.0",
52
+ "@web3auth/base-provider": "9.7.0",
53
+ "@web3auth/modal": "9.7.0",
54
+ "@web3auth/single-factor-auth": "9.5.0",
55
+ "algosdk": "3.5.2",
56
+ "canonify": "2.1.1",
57
+ "liquid-accounts-evm": "file:../../../evm-sdk",
58
+ "lute-connect": "1.6.3",
59
+ "magic-sdk": "29.4.2",
60
+ "tsup": "8.5.1",
61
+ "tweetnacl": "1.0.3",
62
+ "typescript": "5.9.3",
63
+ "viem": "^2.22.0",
64
+ "wagmi": "^2.14.0"
65
+ },
66
+ "peerDependencies": {
67
+ "@agoralabs-sh/avm-web-provider": "^1.7.0",
68
+ "@algorandfoundation/algokit-utils": "^9.2.0",
69
+ "@blockshake/defly-connect": "^1.2.1",
70
+ "@metamask/sdk": "^0.33.1",
71
+ "@perawallet/connect": "^1.4.1",
72
+ "@walletconnect/modal": "^2.7.0",
73
+ "@walletconnect/sign-client": "^2.23.4",
74
+ "@web3auth/base": "^9.0.0",
75
+ "@web3auth/base-provider": "^9.0.0",
76
+ "@web3auth/modal": "^9.0.0",
77
+ "@web3auth/single-factor-auth": "^9.0.0",
78
+ "algosdk": "^3.0.0",
79
+ "liquid-accounts-evm": "*",
80
+ "lute-connect": "^1.4.1",
81
+ "viem": "^2.0.0",
82
+ "wagmi": "^2.0.0"
83
+ },
84
+ "peerDependenciesMeta": {
85
+ "@agoralabs-sh/avm-web-provider": {
86
+ "optional": true
87
+ },
88
+ "@algorandfoundation/algokit-utils": {
89
+ "optional": true
90
+ },
91
+ "@blockshake/defly-connect": {
92
+ "optional": true
93
+ },
94
+ "@metamask/sdk": {
95
+ "optional": true
96
+ },
97
+ "@perawallet/connect": {
98
+ "optional": true
99
+ },
100
+ "@rainbow-me/rainbowkit": {
101
+ "optional": true
102
+ },
103
+ "@walletconnect/modal": {
104
+ "optional": true
105
+ },
106
+ "@walletconnect/sign-client": {
107
+ "optional": true
108
+ },
109
+ "@web3auth/base": {
110
+ "optional": true
111
+ },
112
+ "@web3auth/base-provider": {
113
+ "optional": true
114
+ },
115
+ "@web3auth/modal": {
116
+ "optional": true
117
+ },
118
+ "@web3auth/single-factor-auth": {
119
+ "optional": true
120
+ },
121
+ "liquid-accounts-evm": {
122
+ "optional": true
123
+ },
124
+ "lute-connect": {
125
+ "optional": true
126
+ },
127
+ "viem": {
128
+ "optional": true
129
+ },
130
+ "wagmi": {
131
+ "optional": true
132
+ }
133
+ },
134
+ "scripts": {
135
+ "build": "tsup",
136
+ "start": "tsup src/index.ts --watch",
137
+ "test": "vitest run",
138
+ "test:watch": "pnpm run test --watch",
139
+ "lint": "eslint -c \"../../.eslintrc.json\" \"**/*.{js,ts}\"",
140
+ "typecheck": "tsc --noEmit"
141
+ }
142
+ }