@agentlayer.tech/wallet 0.1.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/.openclaw/AGENTS.md +98 -0
- package/.openclaw/extensions/agent-wallet/README.md +127 -0
- package/.openclaw/extensions/agent-wallet/index.ts +1520 -0
- package/.openclaw/extensions/agent-wallet/openclaw.plugin.json +184 -0
- package/.openclaw/extensions/agent-wallet/package.json +11 -0
- package/.openclaw/extensions/agent-wallet/skills/wallet-operator/SKILL.md +20 -0
- package/CHANGELOG.md +42 -0
- package/LICENSE +104 -0
- package/README.md +332 -0
- package/RELEASING.md +204 -0
- package/agent-wallet/.env.example +62 -0
- package/agent-wallet/AGENTS.md +129 -0
- package/agent-wallet/README.md +527 -0
- package/agent-wallet/agent_wallet/__init__.py +11 -0
- package/agent-wallet/agent_wallet/approval.py +161 -0
- package/agent-wallet/agent_wallet/bootstrap.py +178 -0
- package/agent-wallet/agent_wallet/btc_user_wallets.py +217 -0
- package/agent-wallet/agent_wallet/config.py +382 -0
- package/agent-wallet/agent_wallet/encrypted_storage.py +161 -0
- package/agent-wallet/agent_wallet/evm_user_wallets.py +370 -0
- package/agent-wallet/agent_wallet/exceptions.py +9 -0
- package/agent-wallet/agent_wallet/file_ops.py +34 -0
- package/agent-wallet/agent_wallet/http_client.py +25 -0
- package/agent-wallet/agent_wallet/models.py +66 -0
- package/agent-wallet/agent_wallet/nonce_registry.py +59 -0
- package/agent-wallet/agent_wallet/openclaw_adapter.py +5128 -0
- package/agent-wallet/agent_wallet/openclaw_cli.py +626 -0
- package/agent-wallet/agent_wallet/openclaw_runtime.py +272 -0
- package/agent-wallet/agent_wallet/plugin_bundle.py +42 -0
- package/agent-wallet/agent_wallet/providers/__init__.py +1 -0
- package/agent-wallet/agent_wallet/providers/bags.py +259 -0
- package/agent-wallet/agent_wallet/providers/evm_portfolio.py +470 -0
- package/agent-wallet/agent_wallet/providers/jupiter.py +567 -0
- package/agent-wallet/agent_wallet/providers/kamino.py +215 -0
- package/agent-wallet/agent_wallet/providers/lifi.py +277 -0
- package/agent-wallet/agent_wallet/providers/solana_rpc.py +470 -0
- package/agent-wallet/agent_wallet/providers/wdk_btc_local.py +114 -0
- package/agent-wallet/agent_wallet/providers/wdk_evm_local.py +205 -0
- package/agent-wallet/agent_wallet/sealed_keys.py +61 -0
- package/agent-wallet/agent_wallet/solana_stake.py +103 -0
- package/agent-wallet/agent_wallet/solana_tx.py +93 -0
- package/agent-wallet/agent_wallet/spending_limits.py +101 -0
- package/agent-wallet/agent_wallet/transaction_policy.py +518 -0
- package/agent-wallet/agent_wallet/user_wallets.py +355 -0
- package/agent-wallet/agent_wallet/validation.py +31 -0
- package/agent-wallet/agent_wallet/wallet_layer/__init__.py +1 -0
- package/agent-wallet/agent_wallet/wallet_layer/base.py +808 -0
- package/agent-wallet/agent_wallet/wallet_layer/base58.py +44 -0
- package/agent-wallet/agent_wallet/wallet_layer/factory.py +102 -0
- package/agent-wallet/agent_wallet/wallet_layer/solana.py +4252 -0
- package/agent-wallet/agent_wallet/wallet_layer/wdk_btc.py +272 -0
- package/agent-wallet/agent_wallet/wallet_layer/wdk_evm.py +1628 -0
- package/agent-wallet/examples/bootstrap_wallet.py +21 -0
- package/agent-wallet/examples/openclaw_runtime_onboarding.py +28 -0
- package/agent-wallet/examples/openclaw_user_wallet_example.py +31 -0
- package/agent-wallet/examples/openclaw_wallet_adapter_example.py +33 -0
- package/agent-wallet/openclaw.plugin.json +138 -0
- package/agent-wallet/pyproject.toml +31 -0
- package/agent-wallet/scripts/bootstrap_openclaw_btc.py +278 -0
- package/agent-wallet/scripts/build_release_bundle.py +188 -0
- package/agent-wallet/scripts/finalize_openclaw_local_wallet_config.py +121 -0
- package/agent-wallet/scripts/install_agent_wallet.py +505 -0
- package/agent-wallet/scripts/install_openclaw_local_config.py +226 -0
- package/agent-wallet/scripts/install_openclaw_sealed_keys.py +105 -0
- package/agent-wallet/scripts/manage_openclaw_btc_wallet.py +244 -0
- package/agent-wallet/scripts/reveal_btc_seed.sh +130 -0
- package/agent-wallet/scripts/security_utils.py +37 -0
- package/agent-wallet/scripts/setup_btc_wallet.sh +146 -0
- package/agent-wallet/scripts/switch_openclaw_wallet_network.py +106 -0
- package/agent-wallet/skills/wallet-operator/SKILL.md +128 -0
- package/bin/openclaw-agent-wallet.mjs +487 -0
- package/install-from-github.sh +134 -0
- package/package.json +61 -0
- package/setup.sh +40 -0
- package/wdk-btc-wallet/README.md +325 -0
- package/wdk-btc-wallet/bootstrap.sh +22 -0
- package/wdk-btc-wallet/package-lock.json +1839 -0
- package/wdk-btc-wallet/package.json +18 -0
- package/wdk-btc-wallet/run-local.sh +21 -0
- package/wdk-btc-wallet/src/config.js +160 -0
- package/wdk-btc-wallet/src/json.js +35 -0
- package/wdk-btc-wallet/src/local_vault.js +432 -0
- package/wdk-btc-wallet/src/network_state.js +84 -0
- package/wdk-btc-wallet/src/server.js +257 -0
- package/wdk-btc-wallet/src/wdk_btc_wallet.js +332 -0
- package/wdk-evm-wallet/README.md +183 -0
- package/wdk-evm-wallet/bootstrap.sh +8 -0
- package/wdk-evm-wallet/package-lock.json +2340 -0
- package/wdk-evm-wallet/package.json +23 -0
- package/wdk-evm-wallet/run-local.sh +12 -0
- package/wdk-evm-wallet/src/config.js +274 -0
- package/wdk-evm-wallet/src/json.js +35 -0
- package/wdk-evm-wallet/src/local_vault.js +430 -0
- package/wdk-evm-wallet/src/network_state.js +92 -0
- package/wdk-evm-wallet/src/server.js +575 -0
- package/wdk-evm-wallet/src/wdk_evm_wallet.js +4981 -0
|
@@ -0,0 +1,2340 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "wdk-evm-wallet",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"lockfileVersion": 3,
|
|
5
|
+
"requires": true,
|
|
6
|
+
"packages": {
|
|
7
|
+
"": {
|
|
8
|
+
"name": "wdk-evm-wallet",
|
|
9
|
+
"version": "0.1.0",
|
|
10
|
+
"dependencies": {
|
|
11
|
+
"@tetherto/wdk": "^1.0.0-beta.6",
|
|
12
|
+
"@tetherto/wdk-protocol-lending-aave-evm": "^1.0.0-beta.3",
|
|
13
|
+
"@tetherto/wdk-protocol-swap-velora-evm": "^1.0.0-beta.4",
|
|
14
|
+
"@tetherto/wdk-wallet-evm": "^1.0.0-beta.4",
|
|
15
|
+
"dotenv": "^16.4.5"
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
"node_modules/@adraffy/ens-normalize": {
|
|
19
|
+
"version": "1.10.1",
|
|
20
|
+
"resolved": "https://registry.npmjs.org/@adraffy/ens-normalize/-/ens-normalize-1.10.1.tgz",
|
|
21
|
+
"integrity": "sha512-96Z2IP3mYmF1Xg2cDm8f1gWGf/HUVedQ3FMifV4kG/PQ4yEP51xDtRAEfhVNt5f/uzpNkZHwWQuUcu6D6K+Ekw==",
|
|
22
|
+
"license": "MIT"
|
|
23
|
+
},
|
|
24
|
+
"node_modules/@bgd-labs/aave-address-book": {
|
|
25
|
+
"version": "4.33.0",
|
|
26
|
+
"resolved": "https://registry.npmjs.org/@bgd-labs/aave-address-book/-/aave-address-book-4.33.0.tgz",
|
|
27
|
+
"integrity": "sha512-YhO02+3dNYN9G/T4CQNuei6NPOAlt6fE3Rn45fUdugdGR1JrP+1S1ZMAdqJlnmPuMVItndd96o/P/p0uOr0MNg==",
|
|
28
|
+
"license": "MIT",
|
|
29
|
+
"workspaces": [
|
|
30
|
+
"ui"
|
|
31
|
+
],
|
|
32
|
+
"peerDependencies": {
|
|
33
|
+
"viem": "^2.23.5"
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
"node_modules/@gelatonetwork/relay-sdk": {
|
|
37
|
+
"version": "5.7.0",
|
|
38
|
+
"resolved": "https://registry.npmjs.org/@gelatonetwork/relay-sdk/-/relay-sdk-5.7.0.tgz",
|
|
39
|
+
"integrity": "sha512-8y+uKL+Et7QxOunDu9+P4UrFdQSPT8x6PFqRUq/2LBtZK89Zt8lh2X6VA86cd6nST9xOHjj46PcER8xEWG5iJA==",
|
|
40
|
+
"deprecated": "This package is deprecated. Use @gelatocloud/gasless instead.",
|
|
41
|
+
"license": "ISC",
|
|
42
|
+
"dependencies": {
|
|
43
|
+
"axios": "1.13.2",
|
|
44
|
+
"ethers": "6.13.4",
|
|
45
|
+
"isomorphic-ws": "^5.0.0",
|
|
46
|
+
"ws": "^8.18.0"
|
|
47
|
+
},
|
|
48
|
+
"engines": {
|
|
49
|
+
"node": ">=14.0.0"
|
|
50
|
+
}
|
|
51
|
+
},
|
|
52
|
+
"node_modules/@gelatonetwork/relay-sdk/node_modules/@noble/curves": {
|
|
53
|
+
"version": "1.2.0",
|
|
54
|
+
"resolved": "https://registry.npmjs.org/@noble/curves/-/curves-1.2.0.tgz",
|
|
55
|
+
"integrity": "sha512-oYclrNgRaM9SsBUBVbb8M6DTV7ZHRTKugureoYEncY5c65HOmRzvSiTE3y5CYaPYJA/GVkrhXEoF0M3Ya9PMnw==",
|
|
56
|
+
"license": "MIT",
|
|
57
|
+
"dependencies": {
|
|
58
|
+
"@noble/hashes": "1.3.2"
|
|
59
|
+
},
|
|
60
|
+
"funding": {
|
|
61
|
+
"url": "https://paulmillr.com/funding/"
|
|
62
|
+
}
|
|
63
|
+
},
|
|
64
|
+
"node_modules/@gelatonetwork/relay-sdk/node_modules/@noble/hashes": {
|
|
65
|
+
"version": "1.3.2",
|
|
66
|
+
"resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.3.2.tgz",
|
|
67
|
+
"integrity": "sha512-MVC8EAQp7MvEcm30KWENFjgR+Mkmf+D189XJTkFIlwohU5hcBbn1ZkKq7KVTi2Hme3PMGF390DaL52beVrIihQ==",
|
|
68
|
+
"license": "MIT",
|
|
69
|
+
"engines": {
|
|
70
|
+
"node": ">= 16"
|
|
71
|
+
},
|
|
72
|
+
"funding": {
|
|
73
|
+
"url": "https://paulmillr.com/funding/"
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
"node_modules/@gelatonetwork/relay-sdk/node_modules/ethers": {
|
|
77
|
+
"version": "6.13.4",
|
|
78
|
+
"resolved": "https://registry.npmjs.org/ethers/-/ethers-6.13.4.tgz",
|
|
79
|
+
"integrity": "sha512-21YtnZVg4/zKkCQPjrDj38B1r4nQvTZLopUGMLQ1ePU2zV/joCfDC3t3iKQjWRzjjjbzR+mdAIoikeBRNkdllA==",
|
|
80
|
+
"funding": [
|
|
81
|
+
{
|
|
82
|
+
"type": "individual",
|
|
83
|
+
"url": "https://github.com/sponsors/ethers-io/"
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"type": "individual",
|
|
87
|
+
"url": "https://www.buymeacoffee.com/ricmoo"
|
|
88
|
+
}
|
|
89
|
+
],
|
|
90
|
+
"license": "MIT",
|
|
91
|
+
"dependencies": {
|
|
92
|
+
"@adraffy/ens-normalize": "1.10.1",
|
|
93
|
+
"@noble/curves": "1.2.0",
|
|
94
|
+
"@noble/hashes": "1.3.2",
|
|
95
|
+
"@types/node": "22.7.5",
|
|
96
|
+
"aes-js": "4.0.0-beta.5",
|
|
97
|
+
"tslib": "2.7.0",
|
|
98
|
+
"ws": "8.17.1"
|
|
99
|
+
},
|
|
100
|
+
"engines": {
|
|
101
|
+
"node": ">=14.0.0"
|
|
102
|
+
}
|
|
103
|
+
},
|
|
104
|
+
"node_modules/@gelatonetwork/relay-sdk/node_modules/ethers/node_modules/ws": {
|
|
105
|
+
"version": "8.17.1",
|
|
106
|
+
"resolved": "https://registry.npmjs.org/ws/-/ws-8.17.1.tgz",
|
|
107
|
+
"integrity": "sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==",
|
|
108
|
+
"license": "MIT",
|
|
109
|
+
"engines": {
|
|
110
|
+
"node": ">=10.0.0"
|
|
111
|
+
},
|
|
112
|
+
"peerDependencies": {
|
|
113
|
+
"bufferutil": "^4.0.1",
|
|
114
|
+
"utf-8-validate": ">=5.0.2"
|
|
115
|
+
},
|
|
116
|
+
"peerDependenciesMeta": {
|
|
117
|
+
"bufferutil": {
|
|
118
|
+
"optional": true
|
|
119
|
+
},
|
|
120
|
+
"utf-8-validate": {
|
|
121
|
+
"optional": true
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
},
|
|
125
|
+
"node_modules/@gelatonetwork/relay-sdk/node_modules/ws": {
|
|
126
|
+
"version": "8.20.0",
|
|
127
|
+
"resolved": "https://registry.npmjs.org/ws/-/ws-8.20.0.tgz",
|
|
128
|
+
"integrity": "sha512-sAt8BhgNbzCtgGbt2OxmpuryO63ZoDk/sqaB/znQm94T4fCEsy/yV+7CdC1kJhOU9lboAEU7R3kquuycDoibVA==",
|
|
129
|
+
"license": "MIT",
|
|
130
|
+
"engines": {
|
|
131
|
+
"node": ">=10.0.0"
|
|
132
|
+
},
|
|
133
|
+
"peerDependencies": {
|
|
134
|
+
"bufferutil": "^4.0.1",
|
|
135
|
+
"utf-8-validate": ">=5.0.2"
|
|
136
|
+
},
|
|
137
|
+
"peerDependenciesMeta": {
|
|
138
|
+
"bufferutil": {
|
|
139
|
+
"optional": true
|
|
140
|
+
},
|
|
141
|
+
"utf-8-validate": {
|
|
142
|
+
"optional": true
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
},
|
|
146
|
+
"node_modules/@noble/ciphers": {
|
|
147
|
+
"version": "1.3.0",
|
|
148
|
+
"resolved": "https://registry.npmjs.org/@noble/ciphers/-/ciphers-1.3.0.tgz",
|
|
149
|
+
"integrity": "sha512-2I0gnIVPtfnMw9ee9h1dJG7tp81+8Ob3OJb3Mv37rx5L40/b0i7djjCVvGOVqc9AEIQyvyu1i6ypKdFw8R8gQw==",
|
|
150
|
+
"license": "MIT",
|
|
151
|
+
"engines": {
|
|
152
|
+
"node": "^14.21.3 || >=16"
|
|
153
|
+
},
|
|
154
|
+
"funding": {
|
|
155
|
+
"url": "https://paulmillr.com/funding/"
|
|
156
|
+
}
|
|
157
|
+
},
|
|
158
|
+
"node_modules/@noble/curves": {
|
|
159
|
+
"version": "1.9.2",
|
|
160
|
+
"resolved": "https://registry.npmjs.org/@noble/curves/-/curves-1.9.2.tgz",
|
|
161
|
+
"integrity": "sha512-HxngEd2XUcg9xi20JkwlLCtYwfoFw4JGkuZpT+WlsPD4gB/cxkvTD8fSsoAnphGZhFdZYKeQIPCuFlWPm1uE0g==",
|
|
162
|
+
"license": "MIT",
|
|
163
|
+
"dependencies": {
|
|
164
|
+
"@noble/hashes": "1.8.0"
|
|
165
|
+
},
|
|
166
|
+
"engines": {
|
|
167
|
+
"node": "^14.21.3 || >=16"
|
|
168
|
+
},
|
|
169
|
+
"funding": {
|
|
170
|
+
"url": "https://paulmillr.com/funding/"
|
|
171
|
+
}
|
|
172
|
+
},
|
|
173
|
+
"node_modules/@noble/hashes": {
|
|
174
|
+
"version": "1.8.0",
|
|
175
|
+
"resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.8.0.tgz",
|
|
176
|
+
"integrity": "sha512-jCs9ldd7NwzpgXDIf6P3+NrHh9/sD6CQdxHyjQI+h/6rDNo88ypBxxz45UDuZHz9r3tNz7N/VInSVoVdtXEI4A==",
|
|
177
|
+
"license": "MIT",
|
|
178
|
+
"engines": {
|
|
179
|
+
"node": "^14.21.3 || >=16"
|
|
180
|
+
},
|
|
181
|
+
"funding": {
|
|
182
|
+
"url": "https://paulmillr.com/funding/"
|
|
183
|
+
}
|
|
184
|
+
},
|
|
185
|
+
"node_modules/@noble/secp256k1": {
|
|
186
|
+
"version": "2.2.3",
|
|
187
|
+
"resolved": "https://registry.npmjs.org/@noble/secp256k1/-/secp256k1-2.2.3.tgz",
|
|
188
|
+
"integrity": "sha512-l7r5oEQym9Us7EAigzg30/PQAvynhMt2uoYtT3t26eGDVm9Yii5mZ5jWSWmZ/oSIR2Et0xfc6DXrG0bZ787V3w==",
|
|
189
|
+
"license": "MIT",
|
|
190
|
+
"funding": {
|
|
191
|
+
"url": "https://paulmillr.com/funding/"
|
|
192
|
+
}
|
|
193
|
+
},
|
|
194
|
+
"node_modules/@paraswap/core": {
|
|
195
|
+
"version": "2.4.0",
|
|
196
|
+
"resolved": "https://registry.npmjs.org/@paraswap/core/-/core-2.4.0.tgz",
|
|
197
|
+
"integrity": "sha512-msv0Etc5f7H2UDnDd23wKzNnx64fj1iwt8IlBORTFIpxJ1+fa+TqNO7lhtohfRiVmU3dnnAMcjEi4D+WHSWpvw==",
|
|
198
|
+
"license": "MIT"
|
|
199
|
+
},
|
|
200
|
+
"node_modules/@peculiar/asn1-schema": {
|
|
201
|
+
"version": "2.6.0",
|
|
202
|
+
"resolved": "https://registry.npmjs.org/@peculiar/asn1-schema/-/asn1-schema-2.6.0.tgz",
|
|
203
|
+
"integrity": "sha512-xNLYLBFTBKkCzEZIw842BxytQQATQv+lDTCEMZ8C196iJcJJMBUZxrhSTxLaohMyKK8QlzRNTRkUmanucnDSqg==",
|
|
204
|
+
"license": "MIT",
|
|
205
|
+
"optional": true,
|
|
206
|
+
"dependencies": {
|
|
207
|
+
"asn1js": "^3.0.6",
|
|
208
|
+
"pvtsutils": "^1.3.6",
|
|
209
|
+
"tslib": "^2.8.1"
|
|
210
|
+
}
|
|
211
|
+
},
|
|
212
|
+
"node_modules/@peculiar/asn1-schema/node_modules/tslib": {
|
|
213
|
+
"version": "2.8.1",
|
|
214
|
+
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
|
|
215
|
+
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
|
|
216
|
+
"license": "0BSD",
|
|
217
|
+
"optional": true
|
|
218
|
+
},
|
|
219
|
+
"node_modules/@safe-global/safe-deployments": {
|
|
220
|
+
"version": "1.37.53",
|
|
221
|
+
"resolved": "https://registry.npmjs.org/@safe-global/safe-deployments/-/safe-deployments-1.37.53.tgz",
|
|
222
|
+
"integrity": "sha512-3XihirwKqcCi6jsipCiW3lYXra9i4pC9nlhHTdUyi7Yx38nBYIkXeLZN2Nmf2UPcQBeHGnW1T3DgzY4VnuF/FQ==",
|
|
223
|
+
"license": "MIT",
|
|
224
|
+
"dependencies": {
|
|
225
|
+
"semver": "^7.6.2"
|
|
226
|
+
}
|
|
227
|
+
},
|
|
228
|
+
"node_modules/@safe-global/safe-modules-deployments": {
|
|
229
|
+
"version": "2.2.25",
|
|
230
|
+
"resolved": "https://registry.npmjs.org/@safe-global/safe-modules-deployments/-/safe-modules-deployments-2.2.25.tgz",
|
|
231
|
+
"integrity": "sha512-KjgenKhBRyFHEfo8xlBgNzKAy25vrmGyCGZwTjIuA81yOSRJRe85GE5Yfg/FBKeeyHqR2dD1WPZr6c2Uqd6C/g==",
|
|
232
|
+
"license": "MIT"
|
|
233
|
+
},
|
|
234
|
+
"node_modules/@safe-global/types-kit": {
|
|
235
|
+
"version": "3.1.0",
|
|
236
|
+
"resolved": "https://registry.npmjs.org/@safe-global/types-kit/-/types-kit-3.1.0.tgz",
|
|
237
|
+
"integrity": "sha512-uI6lFV8wOji4rb7juu0/LRMND0rq2NWaqH4zFzE2FUjO8lTvbCT+/5W/+flUUfkcaqyLDlJ1OPjasa2bEakrbw==",
|
|
238
|
+
"license": "MIT",
|
|
239
|
+
"dependencies": {
|
|
240
|
+
"abitype": "^1.0.2"
|
|
241
|
+
}
|
|
242
|
+
},
|
|
243
|
+
"node_modules/@scure/base": {
|
|
244
|
+
"version": "1.2.6",
|
|
245
|
+
"resolved": "https://registry.npmjs.org/@scure/base/-/base-1.2.6.tgz",
|
|
246
|
+
"integrity": "sha512-g/nm5FgUa//MCj1gV09zTJTaM6KBAHqLN907YVQqf7zC49+DcO4B1so4ZX07Ef10Twr6nuqYEH9GEggFXA4Fmg==",
|
|
247
|
+
"license": "MIT",
|
|
248
|
+
"funding": {
|
|
249
|
+
"url": "https://paulmillr.com/funding/"
|
|
250
|
+
}
|
|
251
|
+
},
|
|
252
|
+
"node_modules/@scure/bip32": {
|
|
253
|
+
"version": "1.7.0",
|
|
254
|
+
"resolved": "https://registry.npmjs.org/@scure/bip32/-/bip32-1.7.0.tgz",
|
|
255
|
+
"integrity": "sha512-E4FFX/N3f4B80AKWp5dP6ow+flD1LQZo/w8UnLGYZO674jS6YnYeepycOOksv+vLPSpgN35wgKgy+ybfTb2SMw==",
|
|
256
|
+
"license": "MIT",
|
|
257
|
+
"dependencies": {
|
|
258
|
+
"@noble/curves": "~1.9.0",
|
|
259
|
+
"@noble/hashes": "~1.8.0",
|
|
260
|
+
"@scure/base": "~1.2.5"
|
|
261
|
+
},
|
|
262
|
+
"funding": {
|
|
263
|
+
"url": "https://paulmillr.com/funding/"
|
|
264
|
+
}
|
|
265
|
+
},
|
|
266
|
+
"node_modules/@scure/bip39": {
|
|
267
|
+
"version": "1.6.0",
|
|
268
|
+
"resolved": "https://registry.npmjs.org/@scure/bip39/-/bip39-1.6.0.tgz",
|
|
269
|
+
"integrity": "sha512-+lF0BbLiJNwVlev4eKelw1WWLaiKXw7sSl8T6FvBlWkdX+94aGJ4o8XjUdlyhTCjd8c+B3KT3JfS8P0bLRNU6A==",
|
|
270
|
+
"license": "MIT",
|
|
271
|
+
"dependencies": {
|
|
272
|
+
"@noble/hashes": "~1.8.0",
|
|
273
|
+
"@scure/base": "~1.2.5"
|
|
274
|
+
},
|
|
275
|
+
"funding": {
|
|
276
|
+
"url": "https://paulmillr.com/funding/"
|
|
277
|
+
}
|
|
278
|
+
},
|
|
279
|
+
"node_modules/@tetherto/wdk": {
|
|
280
|
+
"version": "1.0.0-beta.6",
|
|
281
|
+
"resolved": "https://registry.npmjs.org/@tetherto/wdk/-/wdk-1.0.0-beta.6.tgz",
|
|
282
|
+
"integrity": "sha512-UBBHlKbdHWEHWgAdAo3/WjLu5UHQLpnRaBI16GVcmanB1eenA+lOdxI1I9Y4u9Toy587g/g9/V9yAgy0OsPc3Q==",
|
|
283
|
+
"license": "Apache-2.0",
|
|
284
|
+
"dependencies": {
|
|
285
|
+
"@tetherto/wdk-wallet": "^1.0.0-beta.6",
|
|
286
|
+
"bare-node-runtime": "^1.1.4"
|
|
287
|
+
}
|
|
288
|
+
},
|
|
289
|
+
"node_modules/@tetherto/wdk-protocol-lending-aave-evm": {
|
|
290
|
+
"version": "1.0.0-beta.3",
|
|
291
|
+
"resolved": "https://registry.npmjs.org/@tetherto/wdk-protocol-lending-aave-evm/-/wdk-protocol-lending-aave-evm-1.0.0-beta.3.tgz",
|
|
292
|
+
"integrity": "sha512-y6VBGCLzmhd0IKLgI0fVuqc4EVB41Xjw9DN2bS7pjOAXK0eSChvUpHKtnoUa7mecffABDWzOl492tMo9kRR3ow==",
|
|
293
|
+
"license": "Apache-2.0",
|
|
294
|
+
"dependencies": {
|
|
295
|
+
"@bgd-labs/aave-address-book": "4.33.0",
|
|
296
|
+
"@tetherto/wdk-wallet": "^1.0.0-beta.1",
|
|
297
|
+
"@tetherto/wdk-wallet-evm": "^1.0.0-beta.2",
|
|
298
|
+
"@tetherto/wdk-wallet-evm-erc-4337": "^1.0.0-beta.1",
|
|
299
|
+
"bare-node-runtime": "^1.1.4",
|
|
300
|
+
"ethers": "6.14.3"
|
|
301
|
+
}
|
|
302
|
+
},
|
|
303
|
+
"node_modules/@tetherto/wdk-protocol-lending-aave-evm/node_modules/@noble/curves": {
|
|
304
|
+
"version": "1.2.0",
|
|
305
|
+
"resolved": "https://registry.npmjs.org/@noble/curves/-/curves-1.2.0.tgz",
|
|
306
|
+
"integrity": "sha512-oYclrNgRaM9SsBUBVbb8M6DTV7ZHRTKugureoYEncY5c65HOmRzvSiTE3y5CYaPYJA/GVkrhXEoF0M3Ya9PMnw==",
|
|
307
|
+
"license": "MIT",
|
|
308
|
+
"dependencies": {
|
|
309
|
+
"@noble/hashes": "1.3.2"
|
|
310
|
+
},
|
|
311
|
+
"funding": {
|
|
312
|
+
"url": "https://paulmillr.com/funding/"
|
|
313
|
+
}
|
|
314
|
+
},
|
|
315
|
+
"node_modules/@tetherto/wdk-protocol-lending-aave-evm/node_modules/@noble/hashes": {
|
|
316
|
+
"version": "1.3.2",
|
|
317
|
+
"resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.3.2.tgz",
|
|
318
|
+
"integrity": "sha512-MVC8EAQp7MvEcm30KWENFjgR+Mkmf+D189XJTkFIlwohU5hcBbn1ZkKq7KVTi2Hme3PMGF390DaL52beVrIihQ==",
|
|
319
|
+
"license": "MIT",
|
|
320
|
+
"engines": {
|
|
321
|
+
"node": ">= 16"
|
|
322
|
+
},
|
|
323
|
+
"funding": {
|
|
324
|
+
"url": "https://paulmillr.com/funding/"
|
|
325
|
+
}
|
|
326
|
+
},
|
|
327
|
+
"node_modules/@tetherto/wdk-protocol-lending-aave-evm/node_modules/ethers": {
|
|
328
|
+
"version": "6.14.3",
|
|
329
|
+
"resolved": "https://registry.npmjs.org/ethers/-/ethers-6.14.3.tgz",
|
|
330
|
+
"integrity": "sha512-qq7ft/oCJohoTcsNPFaXSQUm457MA5iWqkf1Mb11ujONdg7jBI6sAOrHaTi3j0CBqIGFSCeR/RMc+qwRRub7IA==",
|
|
331
|
+
"funding": [
|
|
332
|
+
{
|
|
333
|
+
"type": "individual",
|
|
334
|
+
"url": "https://github.com/sponsors/ethers-io/"
|
|
335
|
+
},
|
|
336
|
+
{
|
|
337
|
+
"type": "individual",
|
|
338
|
+
"url": "https://www.buymeacoffee.com/ricmoo"
|
|
339
|
+
}
|
|
340
|
+
],
|
|
341
|
+
"license": "MIT",
|
|
342
|
+
"dependencies": {
|
|
343
|
+
"@adraffy/ens-normalize": "1.10.1",
|
|
344
|
+
"@noble/curves": "1.2.0",
|
|
345
|
+
"@noble/hashes": "1.3.2",
|
|
346
|
+
"@types/node": "22.7.5",
|
|
347
|
+
"aes-js": "4.0.0-beta.5",
|
|
348
|
+
"tslib": "2.7.0",
|
|
349
|
+
"ws": "8.17.1"
|
|
350
|
+
},
|
|
351
|
+
"engines": {
|
|
352
|
+
"node": ">=14.0.0"
|
|
353
|
+
}
|
|
354
|
+
},
|
|
355
|
+
"node_modules/@tetherto/wdk-protocol-swap-velora-evm": {
|
|
356
|
+
"version": "1.0.0-beta.4",
|
|
357
|
+
"resolved": "https://registry.npmjs.org/@tetherto/wdk-protocol-swap-velora-evm/-/wdk-protocol-swap-velora-evm-1.0.0-beta.4.tgz",
|
|
358
|
+
"integrity": "sha512-G7sbRpMhDakxB2I6eS9SqUh9TTVth6xQFF2XaQriOrxmPdvxF6CQAtZKixHUb3lMXx3dsftImrFiCzKk1zExVA==",
|
|
359
|
+
"license": "Apache-2.0",
|
|
360
|
+
"dependencies": {
|
|
361
|
+
"@tetherto/wdk-wallet": "^1.0.0-beta.1",
|
|
362
|
+
"@tetherto/wdk-wallet-evm": "^1.0.0-beta.2",
|
|
363
|
+
"@tetherto/wdk-wallet-evm-erc-4337": "^1.0.0-beta.1",
|
|
364
|
+
"@velora-dex/sdk": "9.0.0",
|
|
365
|
+
"bare-node-runtime": "^1.1.4",
|
|
366
|
+
"ethers": "6.13.5"
|
|
367
|
+
}
|
|
368
|
+
},
|
|
369
|
+
"node_modules/@tetherto/wdk-protocol-swap-velora-evm/node_modules/@noble/curves": {
|
|
370
|
+
"version": "1.2.0",
|
|
371
|
+
"resolved": "https://registry.npmjs.org/@noble/curves/-/curves-1.2.0.tgz",
|
|
372
|
+
"integrity": "sha512-oYclrNgRaM9SsBUBVbb8M6DTV7ZHRTKugureoYEncY5c65HOmRzvSiTE3y5CYaPYJA/GVkrhXEoF0M3Ya9PMnw==",
|
|
373
|
+
"license": "MIT",
|
|
374
|
+
"dependencies": {
|
|
375
|
+
"@noble/hashes": "1.3.2"
|
|
376
|
+
},
|
|
377
|
+
"funding": {
|
|
378
|
+
"url": "https://paulmillr.com/funding/"
|
|
379
|
+
}
|
|
380
|
+
},
|
|
381
|
+
"node_modules/@tetherto/wdk-protocol-swap-velora-evm/node_modules/@noble/hashes": {
|
|
382
|
+
"version": "1.3.2",
|
|
383
|
+
"resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.3.2.tgz",
|
|
384
|
+
"integrity": "sha512-MVC8EAQp7MvEcm30KWENFjgR+Mkmf+D189XJTkFIlwohU5hcBbn1ZkKq7KVTi2Hme3PMGF390DaL52beVrIihQ==",
|
|
385
|
+
"license": "MIT",
|
|
386
|
+
"engines": {
|
|
387
|
+
"node": ">= 16"
|
|
388
|
+
},
|
|
389
|
+
"funding": {
|
|
390
|
+
"url": "https://paulmillr.com/funding/"
|
|
391
|
+
}
|
|
392
|
+
},
|
|
393
|
+
"node_modules/@tetherto/wdk-protocol-swap-velora-evm/node_modules/ethers": {
|
|
394
|
+
"version": "6.13.5",
|
|
395
|
+
"resolved": "https://registry.npmjs.org/ethers/-/ethers-6.13.5.tgz",
|
|
396
|
+
"integrity": "sha512-+knKNieu5EKRThQJWwqaJ10a6HE9sSehGeqWN65//wE7j47ZpFhKAnHB/JJFibwwg61I/koxaPsXbXpD/skNOQ==",
|
|
397
|
+
"funding": [
|
|
398
|
+
{
|
|
399
|
+
"type": "individual",
|
|
400
|
+
"url": "https://github.com/sponsors/ethers-io/"
|
|
401
|
+
},
|
|
402
|
+
{
|
|
403
|
+
"type": "individual",
|
|
404
|
+
"url": "https://www.buymeacoffee.com/ricmoo"
|
|
405
|
+
}
|
|
406
|
+
],
|
|
407
|
+
"license": "MIT",
|
|
408
|
+
"dependencies": {
|
|
409
|
+
"@adraffy/ens-normalize": "1.10.1",
|
|
410
|
+
"@noble/curves": "1.2.0",
|
|
411
|
+
"@noble/hashes": "1.3.2",
|
|
412
|
+
"@types/node": "22.7.5",
|
|
413
|
+
"aes-js": "4.0.0-beta.5",
|
|
414
|
+
"tslib": "2.7.0",
|
|
415
|
+
"ws": "8.17.1"
|
|
416
|
+
},
|
|
417
|
+
"engines": {
|
|
418
|
+
"node": ">=14.0.0"
|
|
419
|
+
}
|
|
420
|
+
},
|
|
421
|
+
"node_modules/@tetherto/wdk-safe-protocol-kit": {
|
|
422
|
+
"version": "6.1.3",
|
|
423
|
+
"resolved": "https://registry.npmjs.org/@tetherto/wdk-safe-protocol-kit/-/wdk-safe-protocol-kit-6.1.3.tgz",
|
|
424
|
+
"integrity": "sha512-KazAj6y5Ywfm1SbDWdQXetHQ9Rl/8+vwWLICAl+j0Qm1QbryLBz7fbwawSt1l5wT+RYRV64HfqIetlQQaNK6YA==",
|
|
425
|
+
"license": "MIT",
|
|
426
|
+
"dependencies": {
|
|
427
|
+
"@safe-global/safe-deployments": "^1.37.49",
|
|
428
|
+
"@safe-global/safe-modules-deployments": "^2.2.21",
|
|
429
|
+
"@safe-global/types-kit": "^3.0.0",
|
|
430
|
+
"abitype": "^1.0.2",
|
|
431
|
+
"semver": "^7.7.2",
|
|
432
|
+
"viem": "^2.21.8"
|
|
433
|
+
},
|
|
434
|
+
"optionalDependencies": {
|
|
435
|
+
"@noble/curves": "^1.6.0",
|
|
436
|
+
"@peculiar/asn1-schema": "^2.3.13"
|
|
437
|
+
},
|
|
438
|
+
"peerDependencies": {
|
|
439
|
+
"ethers": "^6.13.7"
|
|
440
|
+
}
|
|
441
|
+
},
|
|
442
|
+
"node_modules/@tetherto/wdk-safe-relay-kit": {
|
|
443
|
+
"version": "4.1.5",
|
|
444
|
+
"resolved": "https://registry.npmjs.org/@tetherto/wdk-safe-relay-kit/-/wdk-safe-relay-kit-4.1.5.tgz",
|
|
445
|
+
"integrity": "sha512-os9MPiv0xKt3jyi/5kMBDY2PCC2P0WHxztagxntf7fiKdSiQAVULbtx/w9jKkVCj+cn8M2ijVHZdA0vQl8pcfA==",
|
|
446
|
+
"license": "MIT",
|
|
447
|
+
"dependencies": {
|
|
448
|
+
"@gelatonetwork/relay-sdk": "^5.6.1",
|
|
449
|
+
"@safe-global/safe-modules-deployments": "^2.2.21",
|
|
450
|
+
"@safe-global/types-kit": "^3.0.0",
|
|
451
|
+
"@tetherto/wdk-safe-protocol-kit": "^6.1.3",
|
|
452
|
+
"semver": "^7.7.2",
|
|
453
|
+
"viem": "^2.21.8"
|
|
454
|
+
}
|
|
455
|
+
},
|
|
456
|
+
"node_modules/@tetherto/wdk-wallet": {
|
|
457
|
+
"version": "1.0.0-beta.7",
|
|
458
|
+
"resolved": "https://registry.npmjs.org/@tetherto/wdk-wallet/-/wdk-wallet-1.0.0-beta.7.tgz",
|
|
459
|
+
"integrity": "sha512-QJJPhA+adCImQ/nMymmMeW4x0Ey65vEgWfoDjuXtdaD7LnFdCChFvZXcyDQUH3ghSTnve6MDutMmvfDIxhipVg==",
|
|
460
|
+
"license": "Apache-2.0",
|
|
461
|
+
"dependencies": {
|
|
462
|
+
"bare-node-runtime": "^1.1.4",
|
|
463
|
+
"bip39": "3.1.0"
|
|
464
|
+
}
|
|
465
|
+
},
|
|
466
|
+
"node_modules/@tetherto/wdk-wallet-evm": {
|
|
467
|
+
"version": "1.0.0-beta.10",
|
|
468
|
+
"resolved": "https://registry.npmjs.org/@tetherto/wdk-wallet-evm/-/wdk-wallet-evm-1.0.0-beta.10.tgz",
|
|
469
|
+
"integrity": "sha512-TkaTdcbc3vKH+eimtY8sUMyv+H1Gwcg2eltTyl49e1NP7pPmX2B4w5mOfVnBsCx5+r64UUHKOgJVZnS6oCT9aw==",
|
|
470
|
+
"license": "Apache-2.0",
|
|
471
|
+
"dependencies": {
|
|
472
|
+
"@noble/curves": "1.9.2",
|
|
473
|
+
"@noble/hashes": "1.8.0",
|
|
474
|
+
"@noble/secp256k1": "2.2.3",
|
|
475
|
+
"@tetherto/wdk-wallet": "1.0.0-beta.7",
|
|
476
|
+
"bare-node-runtime": "^1.1.4",
|
|
477
|
+
"bip39": "3.1.0",
|
|
478
|
+
"ethers": "6.14.4",
|
|
479
|
+
"sodium-universal": "5.0.1"
|
|
480
|
+
}
|
|
481
|
+
},
|
|
482
|
+
"node_modules/@tetherto/wdk-wallet-evm-erc-4337": {
|
|
483
|
+
"version": "1.0.0-beta.5",
|
|
484
|
+
"resolved": "https://registry.npmjs.org/@tetherto/wdk-wallet-evm-erc-4337/-/wdk-wallet-evm-erc-4337-1.0.0-beta.5.tgz",
|
|
485
|
+
"integrity": "sha512-Hz/AvKPt1QiMXMEkaGwMwIq9gg1DBSqWm8G+OiolBQVpQHPNHEpSbED4w/F2jcGd6jdefod3IqrGWBscKE55RA==",
|
|
486
|
+
"license": "Apache-2.0",
|
|
487
|
+
"dependencies": {
|
|
488
|
+
"@tetherto/wdk-safe-relay-kit": "4.1.5",
|
|
489
|
+
"@tetherto/wdk-wallet": "1.0.0-beta.7",
|
|
490
|
+
"@tetherto/wdk-wallet-evm": "1.0.0-beta.8",
|
|
491
|
+
"bare-node-runtime": "^1.1.4",
|
|
492
|
+
"ethers": "6.14.4"
|
|
493
|
+
}
|
|
494
|
+
},
|
|
495
|
+
"node_modules/@tetherto/wdk-wallet-evm-erc-4337/node_modules/@tetherto/wdk-wallet-evm": {
|
|
496
|
+
"version": "1.0.0-beta.8",
|
|
497
|
+
"resolved": "https://registry.npmjs.org/@tetherto/wdk-wallet-evm/-/wdk-wallet-evm-1.0.0-beta.8.tgz",
|
|
498
|
+
"integrity": "sha512-wkqoEeAu2uVhhSCkW1y3o0os1G3zwlC3L8J5Fsvio17gyxD802eYyRSiLTmP1g5bXLcW/sUr0hNA06Mscfpchw==",
|
|
499
|
+
"license": "Apache-2.0",
|
|
500
|
+
"dependencies": {
|
|
501
|
+
"@noble/curves": "1.9.2",
|
|
502
|
+
"@noble/hashes": "1.8.0",
|
|
503
|
+
"@noble/secp256k1": "2.2.3",
|
|
504
|
+
"@tetherto/wdk-wallet": "1.0.0-beta.7",
|
|
505
|
+
"bare-node-runtime": "^1.1.4",
|
|
506
|
+
"bip39": "3.1.0",
|
|
507
|
+
"ethers": "6.14.3",
|
|
508
|
+
"sodium-universal": "5.0.1"
|
|
509
|
+
}
|
|
510
|
+
},
|
|
511
|
+
"node_modules/@tetherto/wdk-wallet-evm-erc-4337/node_modules/@tetherto/wdk-wallet-evm/node_modules/ethers": {
|
|
512
|
+
"version": "6.14.3",
|
|
513
|
+
"resolved": "https://registry.npmjs.org/ethers/-/ethers-6.14.3.tgz",
|
|
514
|
+
"integrity": "sha512-qq7ft/oCJohoTcsNPFaXSQUm457MA5iWqkf1Mb11ujONdg7jBI6sAOrHaTi3j0CBqIGFSCeR/RMc+qwRRub7IA==",
|
|
515
|
+
"funding": [
|
|
516
|
+
{
|
|
517
|
+
"type": "individual",
|
|
518
|
+
"url": "https://github.com/sponsors/ethers-io/"
|
|
519
|
+
},
|
|
520
|
+
{
|
|
521
|
+
"type": "individual",
|
|
522
|
+
"url": "https://www.buymeacoffee.com/ricmoo"
|
|
523
|
+
}
|
|
524
|
+
],
|
|
525
|
+
"license": "MIT",
|
|
526
|
+
"dependencies": {
|
|
527
|
+
"@adraffy/ens-normalize": "1.10.1",
|
|
528
|
+
"@noble/curves": "1.2.0",
|
|
529
|
+
"@noble/hashes": "1.3.2",
|
|
530
|
+
"@types/node": "22.7.5",
|
|
531
|
+
"aes-js": "4.0.0-beta.5",
|
|
532
|
+
"tslib": "2.7.0",
|
|
533
|
+
"ws": "8.17.1"
|
|
534
|
+
},
|
|
535
|
+
"engines": {
|
|
536
|
+
"node": ">=14.0.0"
|
|
537
|
+
}
|
|
538
|
+
},
|
|
539
|
+
"node_modules/@tetherto/wdk-wallet-evm-erc-4337/node_modules/@tetherto/wdk-wallet-evm/node_modules/ethers/node_modules/@noble/curves": {
|
|
540
|
+
"version": "1.2.0",
|
|
541
|
+
"resolved": "https://registry.npmjs.org/@noble/curves/-/curves-1.2.0.tgz",
|
|
542
|
+
"integrity": "sha512-oYclrNgRaM9SsBUBVbb8M6DTV7ZHRTKugureoYEncY5c65HOmRzvSiTE3y5CYaPYJA/GVkrhXEoF0M3Ya9PMnw==",
|
|
543
|
+
"license": "MIT",
|
|
544
|
+
"dependencies": {
|
|
545
|
+
"@noble/hashes": "1.3.2"
|
|
546
|
+
},
|
|
547
|
+
"funding": {
|
|
548
|
+
"url": "https://paulmillr.com/funding/"
|
|
549
|
+
}
|
|
550
|
+
},
|
|
551
|
+
"node_modules/@tetherto/wdk-wallet-evm-erc-4337/node_modules/@tetherto/wdk-wallet-evm/node_modules/ethers/node_modules/@noble/hashes": {
|
|
552
|
+
"version": "1.3.2",
|
|
553
|
+
"resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.3.2.tgz",
|
|
554
|
+
"integrity": "sha512-MVC8EAQp7MvEcm30KWENFjgR+Mkmf+D189XJTkFIlwohU5hcBbn1ZkKq7KVTi2Hme3PMGF390DaL52beVrIihQ==",
|
|
555
|
+
"license": "MIT",
|
|
556
|
+
"engines": {
|
|
557
|
+
"node": ">= 16"
|
|
558
|
+
},
|
|
559
|
+
"funding": {
|
|
560
|
+
"url": "https://paulmillr.com/funding/"
|
|
561
|
+
}
|
|
562
|
+
},
|
|
563
|
+
"node_modules/@types/node": {
|
|
564
|
+
"version": "22.7.5",
|
|
565
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-22.7.5.tgz",
|
|
566
|
+
"integrity": "sha512-jML7s2NAzMWc//QSJ1a3prpk78cOPchGvXJsC3C6R6PSMoooztvRVQEz89gmBTBY1SPMaqo5teB4uNHPdetShQ==",
|
|
567
|
+
"license": "MIT",
|
|
568
|
+
"dependencies": {
|
|
569
|
+
"undici-types": "~6.19.2"
|
|
570
|
+
}
|
|
571
|
+
},
|
|
572
|
+
"node_modules/@velora-dex/sdk": {
|
|
573
|
+
"version": "9.0.0",
|
|
574
|
+
"resolved": "https://registry.npmjs.org/@velora-dex/sdk/-/sdk-9.0.0.tgz",
|
|
575
|
+
"integrity": "sha512-9aHpJ+dNXhR8zx1Pz+cCjDZDDQVR2/DfWPRZiXRCfAUTbpAWxFwsUXrKjCZMp9G9kM1gay8iN6H0TDUnvt624g==",
|
|
576
|
+
"license": "MIT",
|
|
577
|
+
"dependencies": {
|
|
578
|
+
"@paraswap/core": "2.4.0",
|
|
579
|
+
"ts-essentials": "^10.0.3"
|
|
580
|
+
},
|
|
581
|
+
"engines": {
|
|
582
|
+
"node": ">=18"
|
|
583
|
+
},
|
|
584
|
+
"peerDependencies": {
|
|
585
|
+
"axios": ">=0.25.0 <2.0.0",
|
|
586
|
+
"ethers": "^5.5.0 || ^6.0.0",
|
|
587
|
+
"viem": "^2.21.0",
|
|
588
|
+
"web3": "^4.14.0"
|
|
589
|
+
},
|
|
590
|
+
"peerDependenciesMeta": {
|
|
591
|
+
"axios": {
|
|
592
|
+
"optional": true
|
|
593
|
+
},
|
|
594
|
+
"ethers": {
|
|
595
|
+
"optional": true
|
|
596
|
+
},
|
|
597
|
+
"viem": {
|
|
598
|
+
"optional": true
|
|
599
|
+
},
|
|
600
|
+
"web3": {
|
|
601
|
+
"optional": true
|
|
602
|
+
}
|
|
603
|
+
}
|
|
604
|
+
},
|
|
605
|
+
"node_modules/abitype": {
|
|
606
|
+
"version": "1.2.3",
|
|
607
|
+
"resolved": "https://registry.npmjs.org/abitype/-/abitype-1.2.3.tgz",
|
|
608
|
+
"integrity": "sha512-Ofer5QUnuUdTFsBRwARMoWKOH1ND5ehwYhJ3OJ/BQO+StkwQjHw0XyVh4vDttzHB7QOFhPHa/o413PJ82gU/Tg==",
|
|
609
|
+
"license": "MIT",
|
|
610
|
+
"funding": {
|
|
611
|
+
"url": "https://github.com/sponsors/wevm"
|
|
612
|
+
},
|
|
613
|
+
"peerDependencies": {
|
|
614
|
+
"typescript": ">=5.0.4",
|
|
615
|
+
"zod": "^3.22.0 || ^4.0.0"
|
|
616
|
+
},
|
|
617
|
+
"peerDependenciesMeta": {
|
|
618
|
+
"typescript": {
|
|
619
|
+
"optional": true
|
|
620
|
+
},
|
|
621
|
+
"zod": {
|
|
622
|
+
"optional": true
|
|
623
|
+
}
|
|
624
|
+
}
|
|
625
|
+
},
|
|
626
|
+
"node_modules/aes-js": {
|
|
627
|
+
"version": "4.0.0-beta.5",
|
|
628
|
+
"resolved": "https://registry.npmjs.org/aes-js/-/aes-js-4.0.0-beta.5.tgz",
|
|
629
|
+
"integrity": "sha512-G965FqalsNyrPqgEGON7nIx1e/OVENSgiEIzyC63haUMuvNnwIgIjMs52hlTCKhkBny7A2ORNlfY9Zu+jmGk1Q==",
|
|
630
|
+
"license": "MIT"
|
|
631
|
+
},
|
|
632
|
+
"node_modules/asn1js": {
|
|
633
|
+
"version": "3.0.7",
|
|
634
|
+
"resolved": "https://registry.npmjs.org/asn1js/-/asn1js-3.0.7.tgz",
|
|
635
|
+
"integrity": "sha512-uLvq6KJu04qoQM6gvBfKFjlh6Gl0vOKQuR5cJMDHQkmwfMOQeN3F3SHCv9SNYSL+CRoHvOGFfllDlVz03GQjvQ==",
|
|
636
|
+
"license": "BSD-3-Clause",
|
|
637
|
+
"optional": true,
|
|
638
|
+
"dependencies": {
|
|
639
|
+
"pvtsutils": "^1.3.6",
|
|
640
|
+
"pvutils": "^1.1.3",
|
|
641
|
+
"tslib": "^2.8.1"
|
|
642
|
+
},
|
|
643
|
+
"engines": {
|
|
644
|
+
"node": ">=12.0.0"
|
|
645
|
+
}
|
|
646
|
+
},
|
|
647
|
+
"node_modules/asn1js/node_modules/tslib": {
|
|
648
|
+
"version": "2.8.1",
|
|
649
|
+
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
|
|
650
|
+
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
|
|
651
|
+
"license": "0BSD",
|
|
652
|
+
"optional": true
|
|
653
|
+
},
|
|
654
|
+
"node_modules/asynckit": {
|
|
655
|
+
"version": "0.4.0",
|
|
656
|
+
"resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
|
|
657
|
+
"integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==",
|
|
658
|
+
"license": "MIT"
|
|
659
|
+
},
|
|
660
|
+
"node_modules/axios": {
|
|
661
|
+
"version": "1.13.2",
|
|
662
|
+
"resolved": "https://registry.npmjs.org/axios/-/axios-1.13.2.tgz",
|
|
663
|
+
"integrity": "sha512-VPk9ebNqPcy5lRGuSlKx752IlDatOjT9paPlm8A7yOuW2Fbvp4X3JznJtT4f0GzGLLiWE9W8onz51SqLYwzGaA==",
|
|
664
|
+
"license": "MIT",
|
|
665
|
+
"dependencies": {
|
|
666
|
+
"follow-redirects": "^1.15.6",
|
|
667
|
+
"form-data": "^4.0.4",
|
|
668
|
+
"proxy-from-env": "^1.1.0"
|
|
669
|
+
}
|
|
670
|
+
},
|
|
671
|
+
"node_modules/b4a": {
|
|
672
|
+
"version": "1.8.0",
|
|
673
|
+
"resolved": "https://registry.npmjs.org/b4a/-/b4a-1.8.0.tgz",
|
|
674
|
+
"integrity": "sha512-qRuSmNSkGQaHwNbM7J78Wwy+ghLEYF1zNrSeMxj4Kgw6y33O3mXcQ6Ie9fRvfU/YnxWkOchPXbaLb73TkIsfdg==",
|
|
675
|
+
"license": "Apache-2.0",
|
|
676
|
+
"peerDependencies": {
|
|
677
|
+
"react-native-b4a": "*"
|
|
678
|
+
},
|
|
679
|
+
"peerDependenciesMeta": {
|
|
680
|
+
"react-native-b4a": {
|
|
681
|
+
"optional": true
|
|
682
|
+
}
|
|
683
|
+
}
|
|
684
|
+
},
|
|
685
|
+
"node_modules/bare-abort": {
|
|
686
|
+
"version": "2.0.13",
|
|
687
|
+
"resolved": "https://registry.npmjs.org/bare-abort/-/bare-abort-2.0.13.tgz",
|
|
688
|
+
"integrity": "sha512-zdc8l88eB11Jsz5rDd6sCAgv2kUFXgdrZWoMlgU6JMkfAi1/uuGFC3IEHswKbIRQTk5H3T5CMuechsXYxiaHlQ==",
|
|
689
|
+
"license": "Apache-2.0"
|
|
690
|
+
},
|
|
691
|
+
"node_modules/bare-abort-controller": {
|
|
692
|
+
"version": "1.1.1",
|
|
693
|
+
"resolved": "https://registry.npmjs.org/bare-abort-controller/-/bare-abort-controller-1.1.1.tgz",
|
|
694
|
+
"integrity": "sha512-A/3w+PHaGnjlrRcmBeuCk8v23SP35db1X6a5GOkTVSloVmMEWdVhhnlrJWzIvnLJh79ljhAFS1lvLRev09LCGg==",
|
|
695
|
+
"license": "Apache-2.0",
|
|
696
|
+
"dependencies": {
|
|
697
|
+
"bare-events": "^2.7.0"
|
|
698
|
+
}
|
|
699
|
+
},
|
|
700
|
+
"node_modules/bare-addon-resolve": {
|
|
701
|
+
"version": "1.10.0",
|
|
702
|
+
"resolved": "https://registry.npmjs.org/bare-addon-resolve/-/bare-addon-resolve-1.10.0.tgz",
|
|
703
|
+
"integrity": "sha512-sSd0jieRJlDaODOzj0oe0RjFVC1QI0ZIjGIdPkbrTXsdVVtENg14c+lHHAhHwmWCZ2nQlMhy8jA3Y5LYPc/isA==",
|
|
704
|
+
"license": "Apache-2.0",
|
|
705
|
+
"dependencies": {
|
|
706
|
+
"bare-module-resolve": "^1.10.0",
|
|
707
|
+
"bare-semver": "^1.0.0"
|
|
708
|
+
},
|
|
709
|
+
"peerDependencies": {
|
|
710
|
+
"bare-url": "*"
|
|
711
|
+
},
|
|
712
|
+
"peerDependenciesMeta": {
|
|
713
|
+
"bare-url": {
|
|
714
|
+
"optional": true
|
|
715
|
+
}
|
|
716
|
+
}
|
|
717
|
+
},
|
|
718
|
+
"node_modules/bare-ansi-escapes": {
|
|
719
|
+
"version": "2.2.3",
|
|
720
|
+
"resolved": "https://registry.npmjs.org/bare-ansi-escapes/-/bare-ansi-escapes-2.2.3.tgz",
|
|
721
|
+
"integrity": "sha512-02ES4/E2RbrtZSnHJ9LntBhYkLA6lPpSEeP8iqS3MccBIVhVBlEmruF1I7HZqx5Q8aiTeYfQVeqmrU9YO2yYoQ==",
|
|
722
|
+
"license": "Apache-2.0",
|
|
723
|
+
"dependencies": {
|
|
724
|
+
"bare-stream": "^2.6.5"
|
|
725
|
+
},
|
|
726
|
+
"peerDependencies": {
|
|
727
|
+
"bare-buffer": "*"
|
|
728
|
+
},
|
|
729
|
+
"peerDependenciesMeta": {
|
|
730
|
+
"bare-buffer": {
|
|
731
|
+
"optional": true
|
|
732
|
+
}
|
|
733
|
+
}
|
|
734
|
+
},
|
|
735
|
+
"node_modules/bare-assert": {
|
|
736
|
+
"version": "1.2.0",
|
|
737
|
+
"resolved": "https://registry.npmjs.org/bare-assert/-/bare-assert-1.2.0.tgz",
|
|
738
|
+
"integrity": "sha512-c6uvgvTJBspTDxtVnPgrBKmLgcpW3Fp72NVKDLg6oT4QjQbhGtvrkHMhGYMK1sh4vjBHOBmuUalyt9hSzV37fQ==",
|
|
739
|
+
"license": "Apache-2.0",
|
|
740
|
+
"dependencies": {
|
|
741
|
+
"bare-inspect": "^3.1.2"
|
|
742
|
+
}
|
|
743
|
+
},
|
|
744
|
+
"node_modules/bare-async-hooks": {
|
|
745
|
+
"version": "0.0.0",
|
|
746
|
+
"resolved": "https://registry.npmjs.org/bare-async-hooks/-/bare-async-hooks-0.0.0.tgz",
|
|
747
|
+
"integrity": "sha512-xNfGwUobaomCGMGAqohAekS3uMCj+4tvI4AoOaJnO7NfpN+dvFdkC5xkeQtmZzs2vxf2TR5J6i5FDd1ImCZERw==",
|
|
748
|
+
"license": "Apache-2.0"
|
|
749
|
+
},
|
|
750
|
+
"node_modules/bare-buffer": {
|
|
751
|
+
"version": "3.6.0",
|
|
752
|
+
"resolved": "https://registry.npmjs.org/bare-buffer/-/bare-buffer-3.6.0.tgz",
|
|
753
|
+
"integrity": "sha512-/maRWEQ2eBkVNMbNFVsq1pHXJYVj4Y3AixwruB24eKZDs5Gtu0fixzvjYmBIuTsBMtVH5Yb27pQO9BhFa+IlIQ==",
|
|
754
|
+
"license": "Apache-2.0",
|
|
755
|
+
"engines": {
|
|
756
|
+
"bare": ">=1.20.0"
|
|
757
|
+
}
|
|
758
|
+
},
|
|
759
|
+
"node_modules/bare-bundle": {
|
|
760
|
+
"version": "1.10.0",
|
|
761
|
+
"resolved": "https://registry.npmjs.org/bare-bundle/-/bare-bundle-1.10.0.tgz",
|
|
762
|
+
"integrity": "sha512-4LVlnJAHr00Hh6Vu6ZUJS38rcEtJT3b3vChXSsBsJ2mk1TN0lQ+gzd+Dw5L0aV7uqDZv84smuwW+O02X7PfDlw==",
|
|
763
|
+
"license": "Apache-2.0",
|
|
764
|
+
"peerDependencies": {
|
|
765
|
+
"bare-buffer": "*",
|
|
766
|
+
"bare-url": "*"
|
|
767
|
+
},
|
|
768
|
+
"peerDependenciesMeta": {
|
|
769
|
+
"bare-buffer": {
|
|
770
|
+
"optional": true
|
|
771
|
+
},
|
|
772
|
+
"bare-url": {
|
|
773
|
+
"optional": true
|
|
774
|
+
}
|
|
775
|
+
}
|
|
776
|
+
},
|
|
777
|
+
"node_modules/bare-channel": {
|
|
778
|
+
"version": "5.2.3",
|
|
779
|
+
"resolved": "https://registry.npmjs.org/bare-channel/-/bare-channel-5.2.3.tgz",
|
|
780
|
+
"integrity": "sha512-2cRErqS4fzzr3ZUSd5W67ka70dZKJ1VWrCsvxPVC8vr3rWvd4aaCG5iCDas9+MFVaUIWvfw04+NH4+FHQDddMQ==",
|
|
781
|
+
"license": "Apache-2.0",
|
|
782
|
+
"dependencies": {
|
|
783
|
+
"bare-events": "^2.0.0",
|
|
784
|
+
"bare-stream": "^2.7.0",
|
|
785
|
+
"bare-structured-clone": "^1.4.0"
|
|
786
|
+
},
|
|
787
|
+
"engines": {
|
|
788
|
+
"bare": ">=1.7.0"
|
|
789
|
+
}
|
|
790
|
+
},
|
|
791
|
+
"node_modules/bare-console": {
|
|
792
|
+
"version": "6.1.0",
|
|
793
|
+
"resolved": "https://registry.npmjs.org/bare-console/-/bare-console-6.1.0.tgz",
|
|
794
|
+
"integrity": "sha512-BziGTEIyVh0zn78842mmpOLGTEFE7/S4A5Tb0d2iIu7bryVdoiF0przraYMetJckHxm0P5ITTZrYfRuYRr9n/Q==",
|
|
795
|
+
"license": "Apache-2.0",
|
|
796
|
+
"dependencies": {
|
|
797
|
+
"bare-hrtime": "^2.0.0",
|
|
798
|
+
"bare-logger": "^2.0.0",
|
|
799
|
+
"bare-system-logger": "^1.0.2"
|
|
800
|
+
}
|
|
801
|
+
},
|
|
802
|
+
"node_modules/bare-crypto": {
|
|
803
|
+
"version": "1.13.4",
|
|
804
|
+
"resolved": "https://registry.npmjs.org/bare-crypto/-/bare-crypto-1.13.4.tgz",
|
|
805
|
+
"integrity": "sha512-JiCZ5l2YOG1y8J7yy1BCAKTCZrPnHLb7pDRIdurBTOn5oIwBQDIv8iH5Pl2V85vzjl1NZXRfNY4HZLsE942jJA==",
|
|
806
|
+
"license": "Apache-2.0",
|
|
807
|
+
"dependencies": {
|
|
808
|
+
"bare-assert": "^1.2.0",
|
|
809
|
+
"bare-stream": "^2.6.3"
|
|
810
|
+
},
|
|
811
|
+
"peerDependencies": {
|
|
812
|
+
"bare-buffer": "*"
|
|
813
|
+
},
|
|
814
|
+
"peerDependenciesMeta": {
|
|
815
|
+
"bare-buffer": {
|
|
816
|
+
"optional": true
|
|
817
|
+
}
|
|
818
|
+
}
|
|
819
|
+
},
|
|
820
|
+
"node_modules/bare-debug-log": {
|
|
821
|
+
"version": "2.0.0",
|
|
822
|
+
"resolved": "https://registry.npmjs.org/bare-debug-log/-/bare-debug-log-2.0.0.tgz",
|
|
823
|
+
"integrity": "sha512-Vi42PkMQsNV9PUpx2Gl1hikshx5O9FzMJ6o9Nnopseg7qLBBK7Nl31d0RHcfwLEAfmcPApytpc0ZFfq68u22FQ==",
|
|
824
|
+
"license": "Apache-2.0",
|
|
825
|
+
"dependencies": {
|
|
826
|
+
"bare-os": "^3.0.1"
|
|
827
|
+
}
|
|
828
|
+
},
|
|
829
|
+
"node_modules/bare-dgram": {
|
|
830
|
+
"version": "1.0.1",
|
|
831
|
+
"resolved": "https://registry.npmjs.org/bare-dgram/-/bare-dgram-1.0.1.tgz",
|
|
832
|
+
"integrity": "sha512-EdsyRErrkWgN8fENdrDdXFEE9HAuJ/m6ehXz13fVj9JhdCaLWIA+L8o5aYNRLt66x08RlyG2vbrRAZoxGfcdlg==",
|
|
833
|
+
"license": "Apache-2.0",
|
|
834
|
+
"dependencies": {
|
|
835
|
+
"bare-events": "^2.5.0",
|
|
836
|
+
"udx-native": "^1.11.2"
|
|
837
|
+
}
|
|
838
|
+
},
|
|
839
|
+
"node_modules/bare-diagnostics-channel": {
|
|
840
|
+
"version": "1.1.0",
|
|
841
|
+
"resolved": "https://registry.npmjs.org/bare-diagnostics-channel/-/bare-diagnostics-channel-1.1.0.tgz",
|
|
842
|
+
"integrity": "sha512-Reu+EQo+eLpB+a5p8UykFEdXndFaRaSgKV38uAMh/qhE2eTeJcdwAwo74hKYyeN8GD3DIFqC9ZlM4bnDc03CIg==",
|
|
843
|
+
"license": "Apache-2.0"
|
|
844
|
+
},
|
|
845
|
+
"node_modules/bare-dns": {
|
|
846
|
+
"version": "2.1.4",
|
|
847
|
+
"resolved": "https://registry.npmjs.org/bare-dns/-/bare-dns-2.1.4.tgz",
|
|
848
|
+
"integrity": "sha512-abwjHmpWqSRNB7V5615QxPH92L71AVzFm/kKTs8VYiNTAi2xVdonpv0BjJ0hwXLwomoW+xsSOPjW6PZPO14asg==",
|
|
849
|
+
"license": "Apache-2.0",
|
|
850
|
+
"engines": {
|
|
851
|
+
"bare": ">=1.7.0"
|
|
852
|
+
}
|
|
853
|
+
},
|
|
854
|
+
"node_modules/bare-encoding": {
|
|
855
|
+
"version": "1.0.3",
|
|
856
|
+
"resolved": "https://registry.npmjs.org/bare-encoding/-/bare-encoding-1.0.3.tgz",
|
|
857
|
+
"integrity": "sha512-Kqf+t/azs13lUeyK4Tb7ha4wdLRXKWCXQ8w1rVmt7KtoPCPdHD/Xwt7LBIsCSwwGglrcmblo5VOLa5avkJqULA==",
|
|
858
|
+
"license": "Apache-2.0",
|
|
859
|
+
"peerDependencies": {
|
|
860
|
+
"bare-buffer": "*"
|
|
861
|
+
},
|
|
862
|
+
"peerDependenciesMeta": {
|
|
863
|
+
"bare-buffer": {
|
|
864
|
+
"optional": true
|
|
865
|
+
}
|
|
866
|
+
}
|
|
867
|
+
},
|
|
868
|
+
"node_modules/bare-env": {
|
|
869
|
+
"version": "3.0.0",
|
|
870
|
+
"resolved": "https://registry.npmjs.org/bare-env/-/bare-env-3.0.0.tgz",
|
|
871
|
+
"integrity": "sha512-0u964P5ZLAxTi+lW4Kjp7YRJQ5gZr9ycYOtjLxsSrupgMz3sn5Z9n4SH/JIifHwvadsf1brA2JAjP+9IOWwTiw==",
|
|
872
|
+
"license": "Apache-2.0",
|
|
873
|
+
"dependencies": {
|
|
874
|
+
"bare-os": "^3.0.1"
|
|
875
|
+
}
|
|
876
|
+
},
|
|
877
|
+
"node_modules/bare-events": {
|
|
878
|
+
"version": "2.8.2",
|
|
879
|
+
"resolved": "https://registry.npmjs.org/bare-events/-/bare-events-2.8.2.tgz",
|
|
880
|
+
"integrity": "sha512-riJjyv1/mHLIPX4RwiK+oW9/4c3TEUeORHKefKAKnZ5kyslbN+HXowtbaVEqt4IMUB7OXlfixcs6gsFeo/jhiQ==",
|
|
881
|
+
"license": "Apache-2.0",
|
|
882
|
+
"peerDependencies": {
|
|
883
|
+
"bare-abort-controller": "*"
|
|
884
|
+
},
|
|
885
|
+
"peerDependenciesMeta": {
|
|
886
|
+
"bare-abort-controller": {
|
|
887
|
+
"optional": true
|
|
888
|
+
}
|
|
889
|
+
}
|
|
890
|
+
},
|
|
891
|
+
"node_modules/bare-fetch": {
|
|
892
|
+
"version": "2.8.0",
|
|
893
|
+
"resolved": "https://registry.npmjs.org/bare-fetch/-/bare-fetch-2.8.0.tgz",
|
|
894
|
+
"integrity": "sha512-xCBF6oKwzZmq+M6FGcAHv8Fn3XEXHeauLr6dfmr5IG07PFhabg1+r9eeVaIybPAqx8syF9M9+4r23QuDvh3Uvg==",
|
|
895
|
+
"license": "Apache-2.0",
|
|
896
|
+
"dependencies": {
|
|
897
|
+
"bare-form-data": "^1.2.0",
|
|
898
|
+
"bare-http1": "^4.5.2",
|
|
899
|
+
"bare-https": "^2.0.0",
|
|
900
|
+
"bare-stream": "^2.9.1",
|
|
901
|
+
"bare-url": "^2.4.0",
|
|
902
|
+
"bare-zlib": "^1.3.0"
|
|
903
|
+
},
|
|
904
|
+
"peerDependencies": {
|
|
905
|
+
"bare-abort-controller": "*",
|
|
906
|
+
"bare-buffer": "*"
|
|
907
|
+
},
|
|
908
|
+
"peerDependenciesMeta": {
|
|
909
|
+
"bare-abort-controller": {
|
|
910
|
+
"optional": true
|
|
911
|
+
},
|
|
912
|
+
"bare-buffer": {
|
|
913
|
+
"optional": true
|
|
914
|
+
}
|
|
915
|
+
}
|
|
916
|
+
},
|
|
917
|
+
"node_modules/bare-form-data": {
|
|
918
|
+
"version": "1.2.1",
|
|
919
|
+
"resolved": "https://registry.npmjs.org/bare-form-data/-/bare-form-data-1.2.1.tgz",
|
|
920
|
+
"integrity": "sha512-DFZhp5Tn0S7TjII/xhgLl2BNU6f7l5QbIW/YH7TjzQVnxLa8SaMSbl77jpy0ZR1oUnAo0a7NHJ9QAOU6PPr0Jg==",
|
|
921
|
+
"license": "Apache-2.0",
|
|
922
|
+
"dependencies": {
|
|
923
|
+
"bare-buffer": "^3.6.0",
|
|
924
|
+
"bare-stream": "^2.6.5"
|
|
925
|
+
}
|
|
926
|
+
},
|
|
927
|
+
"node_modules/bare-format": {
|
|
928
|
+
"version": "1.0.2",
|
|
929
|
+
"resolved": "https://registry.npmjs.org/bare-format/-/bare-format-1.0.2.tgz",
|
|
930
|
+
"integrity": "sha512-GswdhnOnP9QtwRbrf4wLApw5widkaLMsLe2XOs35fQD2YfEN1ApoGka+cZ7PfvzxMgfYXmMhj/2OGlVn5/Dxgw==",
|
|
931
|
+
"license": "Apache-2.0",
|
|
932
|
+
"dependencies": {
|
|
933
|
+
"bare-inspect": "^3.0.0"
|
|
934
|
+
}
|
|
935
|
+
},
|
|
936
|
+
"node_modules/bare-fs": {
|
|
937
|
+
"version": "4.5.6",
|
|
938
|
+
"resolved": "https://registry.npmjs.org/bare-fs/-/bare-fs-4.5.6.tgz",
|
|
939
|
+
"integrity": "sha512-1QovqDrR80Pmt5HPAsMsXTCFcDYr+NSUKW6nd6WO5v0JBmnItc/irNRzm2KOQ5oZ69P37y+AMujNyNtG+1Rggw==",
|
|
940
|
+
"license": "Apache-2.0",
|
|
941
|
+
"dependencies": {
|
|
942
|
+
"bare-events": "^2.5.4",
|
|
943
|
+
"bare-path": "^3.0.0",
|
|
944
|
+
"bare-stream": "^2.6.4",
|
|
945
|
+
"bare-url": "^2.2.2",
|
|
946
|
+
"fast-fifo": "^1.3.2"
|
|
947
|
+
},
|
|
948
|
+
"engines": {
|
|
949
|
+
"bare": ">=1.16.0"
|
|
950
|
+
},
|
|
951
|
+
"peerDependencies": {
|
|
952
|
+
"bare-buffer": "*"
|
|
953
|
+
},
|
|
954
|
+
"peerDependenciesMeta": {
|
|
955
|
+
"bare-buffer": {
|
|
956
|
+
"optional": true
|
|
957
|
+
}
|
|
958
|
+
}
|
|
959
|
+
},
|
|
960
|
+
"node_modules/bare-hrtime": {
|
|
961
|
+
"version": "2.1.1",
|
|
962
|
+
"resolved": "https://registry.npmjs.org/bare-hrtime/-/bare-hrtime-2.1.1.tgz",
|
|
963
|
+
"integrity": "sha512-VMb3tHo05gsnbu3OXTmkDiwTjMlOsbQmKoysKqKEyR09m77TuDrYFbj3Q5GGk10dAKsUHrnXmwCaeJqzVpB5ZA==",
|
|
964
|
+
"license": "Apache-2.0"
|
|
965
|
+
},
|
|
966
|
+
"node_modules/bare-http-parser": {
|
|
967
|
+
"version": "1.1.3",
|
|
968
|
+
"resolved": "https://registry.npmjs.org/bare-http-parser/-/bare-http-parser-1.1.3.tgz",
|
|
969
|
+
"integrity": "sha512-+dhVvQi6brHq14L/XHNRQ+TLuVE76VjRmMt61wVEtS+Od8xUslfMHWJN/ZjIIt3RtTG6vPuA+x9cOh7KrkBJsA==",
|
|
970
|
+
"license": "Apache-2.0"
|
|
971
|
+
},
|
|
972
|
+
"node_modules/bare-http1": {
|
|
973
|
+
"version": "4.5.5",
|
|
974
|
+
"resolved": "https://registry.npmjs.org/bare-http1/-/bare-http1-4.5.5.tgz",
|
|
975
|
+
"integrity": "sha512-ADITiRo0huP76JGMbv6Arsh9KehHqjEBoYcmjvAo67IY78+/9mV2MeKLLCkiJSFxA85T/m8cTaE44OwJQCcwdw==",
|
|
976
|
+
"license": "Apache-2.0",
|
|
977
|
+
"dependencies": {
|
|
978
|
+
"bare-events": "^2.6.0",
|
|
979
|
+
"bare-http-parser": "^1.1.1",
|
|
980
|
+
"bare-stream": "^2.10.0",
|
|
981
|
+
"bare-tcp": "^2.2.0"
|
|
982
|
+
},
|
|
983
|
+
"peerDependencies": {
|
|
984
|
+
"bare-buffer": "*",
|
|
985
|
+
"bare-url": "*"
|
|
986
|
+
},
|
|
987
|
+
"peerDependenciesMeta": {
|
|
988
|
+
"bare-buffer": {
|
|
989
|
+
"optional": true
|
|
990
|
+
},
|
|
991
|
+
"bare-url": {
|
|
992
|
+
"optional": true
|
|
993
|
+
}
|
|
994
|
+
}
|
|
995
|
+
},
|
|
996
|
+
"node_modules/bare-https": {
|
|
997
|
+
"version": "2.1.3",
|
|
998
|
+
"resolved": "https://registry.npmjs.org/bare-https/-/bare-https-2.1.3.tgz",
|
|
999
|
+
"integrity": "sha512-0TI/mJXQGYXmG7UUyWEG+KCJusayIAQLywUjFAskDoKuxfqVnGF+M/mTMrEV8J64DaIdU+5x761FvgmT7M68tA==",
|
|
1000
|
+
"license": "Apache-2.0",
|
|
1001
|
+
"dependencies": {
|
|
1002
|
+
"bare-http1": "^4.4.0",
|
|
1003
|
+
"bare-tcp": "^2.2.0",
|
|
1004
|
+
"bare-tls": "^2.0.0"
|
|
1005
|
+
}
|
|
1006
|
+
},
|
|
1007
|
+
"node_modules/bare-inspect": {
|
|
1008
|
+
"version": "3.1.4",
|
|
1009
|
+
"resolved": "https://registry.npmjs.org/bare-inspect/-/bare-inspect-3.1.4.tgz",
|
|
1010
|
+
"integrity": "sha512-jfW5KRA84o3REpI6Vr4nbvMn+hqVAw8GU1mMdRwUsY5yJovQamxYeKGVKGqdzs+8ZbG4jRzGUXP/3Ji/DnqfPg==",
|
|
1011
|
+
"license": "Apache-2.0",
|
|
1012
|
+
"dependencies": {
|
|
1013
|
+
"bare-ansi-escapes": "^2.1.0",
|
|
1014
|
+
"bare-type": "^1.0.0"
|
|
1015
|
+
},
|
|
1016
|
+
"engines": {
|
|
1017
|
+
"bare": ">=1.18.0"
|
|
1018
|
+
}
|
|
1019
|
+
},
|
|
1020
|
+
"node_modules/bare-inspector": {
|
|
1021
|
+
"version": "5.0.0",
|
|
1022
|
+
"resolved": "https://registry.npmjs.org/bare-inspector/-/bare-inspector-5.0.0.tgz",
|
|
1023
|
+
"integrity": "sha512-blObRFPBK6yn0/wZbrRgkGcOuLUQUYVvkKbsEp5p3bWJB+uNrAh+qUqOijQHS6mZjGvyGCE86VERp3EiUR2TyA==",
|
|
1024
|
+
"license": "Apache-2.0",
|
|
1025
|
+
"dependencies": {
|
|
1026
|
+
"bare-events": "^2.1.0",
|
|
1027
|
+
"bare-http1": "^4.0.0",
|
|
1028
|
+
"bare-stream": "^2.0.0",
|
|
1029
|
+
"bare-url": "^2.0.0",
|
|
1030
|
+
"bare-ws": "^2.0.0"
|
|
1031
|
+
},
|
|
1032
|
+
"engines": {
|
|
1033
|
+
"bare": ">=1.2.0"
|
|
1034
|
+
},
|
|
1035
|
+
"peerDependencies": {
|
|
1036
|
+
"bare-tcp": "*"
|
|
1037
|
+
},
|
|
1038
|
+
"peerDependenciesMeta": {
|
|
1039
|
+
"bare-tcp": {
|
|
1040
|
+
"optional": true
|
|
1041
|
+
}
|
|
1042
|
+
}
|
|
1043
|
+
},
|
|
1044
|
+
"node_modules/bare-logger": {
|
|
1045
|
+
"version": "2.0.3",
|
|
1046
|
+
"resolved": "https://registry.npmjs.org/bare-logger/-/bare-logger-2.0.3.tgz",
|
|
1047
|
+
"integrity": "sha512-U6K7NxHdeAHxEgHFDV8zXvgjgDZKQO6LlCrxQvUvlrZEVTnoezSImMWizi85rbZpVsbeI1ZWcLCRGnoIf5EV8Q==",
|
|
1048
|
+
"license": "Apache-2.0",
|
|
1049
|
+
"dependencies": {
|
|
1050
|
+
"bare-format": "^1.0.0"
|
|
1051
|
+
}
|
|
1052
|
+
},
|
|
1053
|
+
"node_modules/bare-module": {
|
|
1054
|
+
"version": "6.1.3",
|
|
1055
|
+
"resolved": "https://registry.npmjs.org/bare-module/-/bare-module-6.1.3.tgz",
|
|
1056
|
+
"integrity": "sha512-5XWsVHsvtWMH4tK4DQWgpNTV0t/sg3ZrAaQLIxrwjrS5+u8Q9vEgc/zQ4QaDPWDse/y/5h+d+YG1Q0JfSMt0zA==",
|
|
1057
|
+
"license": "Apache-2.0",
|
|
1058
|
+
"dependencies": {
|
|
1059
|
+
"bare-bundle": "^1.3.0",
|
|
1060
|
+
"bare-module-lexer": "^1.0.0",
|
|
1061
|
+
"bare-module-resolve": "^1.8.0",
|
|
1062
|
+
"bare-path": "^3.0.0",
|
|
1063
|
+
"bare-url": "^2.0.1"
|
|
1064
|
+
},
|
|
1065
|
+
"engines": {
|
|
1066
|
+
"bare": ">=1.23.0"
|
|
1067
|
+
},
|
|
1068
|
+
"peerDependencies": {
|
|
1069
|
+
"bare-buffer": "*"
|
|
1070
|
+
},
|
|
1071
|
+
"peerDependenciesMeta": {
|
|
1072
|
+
"bare-buffer": {
|
|
1073
|
+
"optional": true
|
|
1074
|
+
}
|
|
1075
|
+
}
|
|
1076
|
+
},
|
|
1077
|
+
"node_modules/bare-module-lexer": {
|
|
1078
|
+
"version": "1.4.7",
|
|
1079
|
+
"resolved": "https://registry.npmjs.org/bare-module-lexer/-/bare-module-lexer-1.4.7.tgz",
|
|
1080
|
+
"integrity": "sha512-0klU4eMsjh/wcxi8FdHmNom2j2F4kmkXOhyJFL9qTaSFp2lE3m6BtbKgMHY8R5miqC9r8/IfA8wzXnC5Os14WA==",
|
|
1081
|
+
"license": "Apache-2.0",
|
|
1082
|
+
"dependencies": {
|
|
1083
|
+
"require-addon": "^1.0.2"
|
|
1084
|
+
},
|
|
1085
|
+
"peerDependencies": {
|
|
1086
|
+
"bare-buffer": "*"
|
|
1087
|
+
},
|
|
1088
|
+
"peerDependenciesMeta": {
|
|
1089
|
+
"bare-buffer": {
|
|
1090
|
+
"optional": true
|
|
1091
|
+
}
|
|
1092
|
+
}
|
|
1093
|
+
},
|
|
1094
|
+
"node_modules/bare-module-resolve": {
|
|
1095
|
+
"version": "1.12.1",
|
|
1096
|
+
"resolved": "https://registry.npmjs.org/bare-module-resolve/-/bare-module-resolve-1.12.1.tgz",
|
|
1097
|
+
"integrity": "sha512-hbmAPyFpEq8FoZMd5sFO3u6MC5feluWoGE8YKlA8fCrl6mNtx68Wjg4DTiDJcqRJaovTvOYKfYngoBUnbaT7eg==",
|
|
1098
|
+
"license": "Apache-2.0",
|
|
1099
|
+
"dependencies": {
|
|
1100
|
+
"bare-semver": "^1.0.0"
|
|
1101
|
+
},
|
|
1102
|
+
"peerDependencies": {
|
|
1103
|
+
"bare-url": "*"
|
|
1104
|
+
},
|
|
1105
|
+
"peerDependenciesMeta": {
|
|
1106
|
+
"bare-url": {
|
|
1107
|
+
"optional": true
|
|
1108
|
+
}
|
|
1109
|
+
}
|
|
1110
|
+
},
|
|
1111
|
+
"node_modules/bare-module-traverse": {
|
|
1112
|
+
"version": "2.0.1",
|
|
1113
|
+
"resolved": "https://registry.npmjs.org/bare-module-traverse/-/bare-module-traverse-2.0.1.tgz",
|
|
1114
|
+
"integrity": "sha512-1au+Og5p97T9b6Y7xmHZ7KtpW8vEYtz2jC2whmm+YJp46EaHfk26j91MmQhufdkR/8sdK1Q5p+P9A/Y5GrJg7Q==",
|
|
1115
|
+
"license": "Apache-2.0",
|
|
1116
|
+
"dependencies": {
|
|
1117
|
+
"bare-addon-resolve": "^1.5.0",
|
|
1118
|
+
"bare-module-lexer": "^1.4.0",
|
|
1119
|
+
"bare-module-resolve": "^1.7.0"
|
|
1120
|
+
},
|
|
1121
|
+
"peerDependencies": {
|
|
1122
|
+
"bare-buffer": "*",
|
|
1123
|
+
"bare-url": "*"
|
|
1124
|
+
},
|
|
1125
|
+
"peerDependenciesMeta": {
|
|
1126
|
+
"bare-buffer": {
|
|
1127
|
+
"optional": true
|
|
1128
|
+
},
|
|
1129
|
+
"bare-url": {
|
|
1130
|
+
"optional": true
|
|
1131
|
+
}
|
|
1132
|
+
}
|
|
1133
|
+
},
|
|
1134
|
+
"node_modules/bare-net": {
|
|
1135
|
+
"version": "2.3.1",
|
|
1136
|
+
"resolved": "https://registry.npmjs.org/bare-net/-/bare-net-2.3.1.tgz",
|
|
1137
|
+
"integrity": "sha512-MypSqDKpDU2Xt7FIfazn5yGvRnV09gFcIPHGWstW0gxuzA4tucTcwJSZeos97C4F89vtU5oGwXDN/HrGN6Y4Jw==",
|
|
1138
|
+
"license": "Apache-2.0",
|
|
1139
|
+
"dependencies": {
|
|
1140
|
+
"bare-events": "^2.2.2",
|
|
1141
|
+
"bare-pipe": "^4.0.0",
|
|
1142
|
+
"bare-stream": "^2.0.0",
|
|
1143
|
+
"bare-tcp": "^2.0.0"
|
|
1144
|
+
}
|
|
1145
|
+
},
|
|
1146
|
+
"node_modules/bare-node-runtime": {
|
|
1147
|
+
"version": "1.2.0",
|
|
1148
|
+
"resolved": "https://registry.npmjs.org/bare-node-runtime/-/bare-node-runtime-1.2.0.tgz",
|
|
1149
|
+
"integrity": "sha512-oCpkcKBLDuzhtga0Q/63Ds3Gj03I0jIf+VX4mDhSClpoBfz/wnDtl2d1NKQDAVNCoP4I617GrJkS3vwNO4dd7w==",
|
|
1150
|
+
"license": "Apache-2.0",
|
|
1151
|
+
"dependencies": {
|
|
1152
|
+
"bare-abort-controller": "^1.0.0",
|
|
1153
|
+
"bare-assert": "^1.1.0",
|
|
1154
|
+
"bare-async-hooks": "^0.0.0",
|
|
1155
|
+
"bare-buffer": "^3.3.1",
|
|
1156
|
+
"bare-console": "^6.0.1",
|
|
1157
|
+
"bare-crypto": "^1.11.2",
|
|
1158
|
+
"bare-dgram": "^1.0.1",
|
|
1159
|
+
"bare-diagnostics-channel": "^1.1.0",
|
|
1160
|
+
"bare-dns": "^2.1.4",
|
|
1161
|
+
"bare-events": "^2.7.0",
|
|
1162
|
+
"bare-fetch": "^2.5.0",
|
|
1163
|
+
"bare-fs": "^4.2.3",
|
|
1164
|
+
"bare-http1": "^4.0.4",
|
|
1165
|
+
"bare-https": "^2.0.0",
|
|
1166
|
+
"bare-inspector": "^5.0.0",
|
|
1167
|
+
"bare-module": "^6.1.2",
|
|
1168
|
+
"bare-net": "^2.0.2",
|
|
1169
|
+
"bare-os": "^3.6.2",
|
|
1170
|
+
"bare-path": "^3.0.0",
|
|
1171
|
+
"bare-performance": "^1.1.0",
|
|
1172
|
+
"bare-process": "^4.2.1",
|
|
1173
|
+
"bare-punycode": "^0.0.0",
|
|
1174
|
+
"bare-querystring": "^1.0.0",
|
|
1175
|
+
"bare-readline": "^1.1.0",
|
|
1176
|
+
"bare-repl": "^6.0.1",
|
|
1177
|
+
"bare-stream": "^2.7.0",
|
|
1178
|
+
"bare-string-decoder": "^1.0.0",
|
|
1179
|
+
"bare-subprocess": "^5.1.1",
|
|
1180
|
+
"bare-timers": "^3.0.3",
|
|
1181
|
+
"bare-tls": "^2.1.3",
|
|
1182
|
+
"bare-tty": "^5.0.3",
|
|
1183
|
+
"bare-url": "^2.2.2",
|
|
1184
|
+
"bare-utils": "^1.5.1",
|
|
1185
|
+
"bare-v8": "^1.0.1",
|
|
1186
|
+
"bare-vm": "^1.0.0",
|
|
1187
|
+
"bare-worker": "^4.0.0",
|
|
1188
|
+
"bare-ws": "^2.1.0",
|
|
1189
|
+
"bare-zlib": "^1.3.1"
|
|
1190
|
+
}
|
|
1191
|
+
},
|
|
1192
|
+
"node_modules/bare-os": {
|
|
1193
|
+
"version": "3.8.6",
|
|
1194
|
+
"resolved": "https://registry.npmjs.org/bare-os/-/bare-os-3.8.6.tgz",
|
|
1195
|
+
"integrity": "sha512-l8xaNWWb/bXuzgsrlF5jaa5QYDJ9S0ddd54cP6CH+081+5iPrbJiCfBWQqrWYzmUhCbsH+WR6qxo9MeHVCr0MQ==",
|
|
1196
|
+
"license": "Apache-2.0",
|
|
1197
|
+
"engines": {
|
|
1198
|
+
"bare": ">=1.14.0"
|
|
1199
|
+
}
|
|
1200
|
+
},
|
|
1201
|
+
"node_modules/bare-path": {
|
|
1202
|
+
"version": "3.0.0",
|
|
1203
|
+
"resolved": "https://registry.npmjs.org/bare-path/-/bare-path-3.0.0.tgz",
|
|
1204
|
+
"integrity": "sha512-tyfW2cQcB5NN8Saijrhqn0Zh7AnFNsnczRcuWODH0eYAXBsJ5gVxAUuNr7tsHSC6IZ77cA0SitzT+s47kot8Mw==",
|
|
1205
|
+
"license": "Apache-2.0",
|
|
1206
|
+
"dependencies": {
|
|
1207
|
+
"bare-os": "^3.0.1"
|
|
1208
|
+
}
|
|
1209
|
+
},
|
|
1210
|
+
"node_modules/bare-performance": {
|
|
1211
|
+
"version": "1.3.0",
|
|
1212
|
+
"resolved": "https://registry.npmjs.org/bare-performance/-/bare-performance-1.3.0.tgz",
|
|
1213
|
+
"integrity": "sha512-ITlHSQwsnJSPjpagTtPo043LRkFgcrl9SgPsVUBXZvTeGWuNLUfMRwmwAS+35i8qnIEinySoLxwhVoJNZAIF2g==",
|
|
1214
|
+
"license": "Apache-2.0"
|
|
1215
|
+
},
|
|
1216
|
+
"node_modules/bare-pipe": {
|
|
1217
|
+
"version": "4.1.5",
|
|
1218
|
+
"resolved": "https://registry.npmjs.org/bare-pipe/-/bare-pipe-4.1.5.tgz",
|
|
1219
|
+
"integrity": "sha512-6OfxaG8JSkRh3Gc4hzHRsxNt+yu2PpN7lrv1V+T78GdknWQkVGwiEvu4m+1nbfk8cMVQ0TGxRvQ90XA4rhnTuw==",
|
|
1220
|
+
"license": "Apache-2.0",
|
|
1221
|
+
"dependencies": {
|
|
1222
|
+
"bare-events": "^2.0.0",
|
|
1223
|
+
"bare-stream": "^2.0.0"
|
|
1224
|
+
},
|
|
1225
|
+
"engines": {
|
|
1226
|
+
"bare": ">=1.16.0"
|
|
1227
|
+
}
|
|
1228
|
+
},
|
|
1229
|
+
"node_modules/bare-process": {
|
|
1230
|
+
"version": "4.4.0",
|
|
1231
|
+
"resolved": "https://registry.npmjs.org/bare-process/-/bare-process-4.4.0.tgz",
|
|
1232
|
+
"integrity": "sha512-G5O+Lk1lsPiYjVXP+xS8KUqNzFwibrwvqJ7DO6x8ceLSTwxyMq7NwpbmbGQQZiaiOsdZZHBFs9n+we7OuANhaw==",
|
|
1233
|
+
"license": "Apache-2.0",
|
|
1234
|
+
"dependencies": {
|
|
1235
|
+
"bare-abort": "^2.0.13",
|
|
1236
|
+
"bare-env": "^3.0.0",
|
|
1237
|
+
"bare-events": "^2.3.1",
|
|
1238
|
+
"bare-fs": "^4.5.6",
|
|
1239
|
+
"bare-hrtime": "^2.0.0",
|
|
1240
|
+
"bare-os": "^3.7.1",
|
|
1241
|
+
"bare-signals": "^4.0.0",
|
|
1242
|
+
"bare-tty": "^5.0.0"
|
|
1243
|
+
}
|
|
1244
|
+
},
|
|
1245
|
+
"node_modules/bare-punycode": {
|
|
1246
|
+
"version": "0.0.0",
|
|
1247
|
+
"resolved": "https://registry.npmjs.org/bare-punycode/-/bare-punycode-0.0.0.tgz",
|
|
1248
|
+
"integrity": "sha512-PC2Y6mGLytZPJCB9M7CvO5Zb6uWYVUZ+5t3L6vePFuFM6tdC6SsQ+sIsuf0Sa6LHBoWURX7I9yMMbPXMv7TIdQ==",
|
|
1249
|
+
"license": "Apache-2.0",
|
|
1250
|
+
"dependencies": {
|
|
1251
|
+
"punycode": "^2.3.1"
|
|
1252
|
+
}
|
|
1253
|
+
},
|
|
1254
|
+
"node_modules/bare-querystring": {
|
|
1255
|
+
"version": "1.0.0",
|
|
1256
|
+
"resolved": "https://registry.npmjs.org/bare-querystring/-/bare-querystring-1.0.0.tgz",
|
|
1257
|
+
"integrity": "sha512-Kbqdjd4f1MxMtutXzraEKIXqXRfq9uWLwzUT5bLUh9TCiPznY9l6vHc4BUPNIa13DyH1VAlPy3iOxHzhqV2quQ==",
|
|
1258
|
+
"license": "Apache-2.0"
|
|
1259
|
+
},
|
|
1260
|
+
"node_modules/bare-readline": {
|
|
1261
|
+
"version": "1.2.2",
|
|
1262
|
+
"resolved": "https://registry.npmjs.org/bare-readline/-/bare-readline-1.2.2.tgz",
|
|
1263
|
+
"integrity": "sha512-7MihQDnw80rxPyLJHZAUgFskFyGUj45FKJDIe57sW0iQyJIGroFA08mrtiMLMWUIgSd49hT7E97FCWvrc29p1Q==",
|
|
1264
|
+
"license": "Apache-2.0",
|
|
1265
|
+
"dependencies": {
|
|
1266
|
+
"bare-ansi-escapes": "^2.0.0",
|
|
1267
|
+
"bare-stream": "^2.0.0"
|
|
1268
|
+
}
|
|
1269
|
+
},
|
|
1270
|
+
"node_modules/bare-realm": {
|
|
1271
|
+
"version": "2.0.1",
|
|
1272
|
+
"resolved": "https://registry.npmjs.org/bare-realm/-/bare-realm-2.0.1.tgz",
|
|
1273
|
+
"integrity": "sha512-kQbYU6AAQu4XBTQesuz2+PpjBx7MJzf5Qw3nSLzQCzbVglx7Ml85MtWEjUe1AeslXqrd+nFPHMEbL55ouISscA==",
|
|
1274
|
+
"license": "Apache-2.0",
|
|
1275
|
+
"engines": {
|
|
1276
|
+
"bare": ">=1.5.0"
|
|
1277
|
+
}
|
|
1278
|
+
},
|
|
1279
|
+
"node_modules/bare-repl": {
|
|
1280
|
+
"version": "6.0.2",
|
|
1281
|
+
"resolved": "https://registry.npmjs.org/bare-repl/-/bare-repl-6.0.2.tgz",
|
|
1282
|
+
"integrity": "sha512-w2R+5LOrMl9UH/gcFjvdIpsB+SgyLr8cW4uJo5bAEzRbRpVA+ZTm8pMHYdj0uqIUBClP/6fkyW0MnB1XkxakmQ==",
|
|
1283
|
+
"license": "Apache-2.0",
|
|
1284
|
+
"dependencies": {
|
|
1285
|
+
"bare-inspect": "^3.0.0",
|
|
1286
|
+
"bare-module": "^6.0.1",
|
|
1287
|
+
"bare-os": "^3.0.1",
|
|
1288
|
+
"bare-path": "^3.0.0",
|
|
1289
|
+
"bare-pipe": "^4.0.0",
|
|
1290
|
+
"bare-readline": "^1.0.0",
|
|
1291
|
+
"bare-stream": "^2.0.0",
|
|
1292
|
+
"bare-tty": "^5.0.0"
|
|
1293
|
+
}
|
|
1294
|
+
},
|
|
1295
|
+
"node_modules/bare-semver": {
|
|
1296
|
+
"version": "1.0.2",
|
|
1297
|
+
"resolved": "https://registry.npmjs.org/bare-semver/-/bare-semver-1.0.2.tgz",
|
|
1298
|
+
"integrity": "sha512-ESVaN2nzWhcI5tf3Zzcq9aqCZ676VWzqw07eEZ0qxAcEOAFYBa0pWq8sK34OQeHLY3JsfKXZS9mDyzyxGjeLzA==",
|
|
1299
|
+
"license": "Apache-2.0"
|
|
1300
|
+
},
|
|
1301
|
+
"node_modules/bare-signals": {
|
|
1302
|
+
"version": "4.2.0",
|
|
1303
|
+
"resolved": "https://registry.npmjs.org/bare-signals/-/bare-signals-4.2.0.tgz",
|
|
1304
|
+
"integrity": "sha512-fNHMOdQIlYuTvMB3Oh9Apk99hLKn351+Ir8vz+khiPTcOqIyGG4uWWjdLTzxWdYGsA0eT+We3y0K74hjj2nq7A==",
|
|
1305
|
+
"license": "Apache-2.0",
|
|
1306
|
+
"dependencies": {
|
|
1307
|
+
"bare-events": "^2.5.3",
|
|
1308
|
+
"bare-os": "^3.3.1"
|
|
1309
|
+
},
|
|
1310
|
+
"engines": {
|
|
1311
|
+
"bare": ">=1.7.0"
|
|
1312
|
+
}
|
|
1313
|
+
},
|
|
1314
|
+
"node_modules/bare-stream": {
|
|
1315
|
+
"version": "2.12.0",
|
|
1316
|
+
"resolved": "https://registry.npmjs.org/bare-stream/-/bare-stream-2.12.0.tgz",
|
|
1317
|
+
"integrity": "sha512-w28i8lkBgREV3rPXGbgK+BO66q+ZpKqRWrZLiCdmmUlLPrQ45CzkvRhN+7lnv00Gpi2zy5naRxnUFAxCECDm9g==",
|
|
1318
|
+
"license": "Apache-2.0",
|
|
1319
|
+
"dependencies": {
|
|
1320
|
+
"streamx": "^2.25.0",
|
|
1321
|
+
"teex": "^1.0.1"
|
|
1322
|
+
},
|
|
1323
|
+
"peerDependencies": {
|
|
1324
|
+
"bare-abort-controller": "*",
|
|
1325
|
+
"bare-buffer": "*",
|
|
1326
|
+
"bare-events": "*"
|
|
1327
|
+
},
|
|
1328
|
+
"peerDependenciesMeta": {
|
|
1329
|
+
"bare-abort-controller": {
|
|
1330
|
+
"optional": true
|
|
1331
|
+
},
|
|
1332
|
+
"bare-buffer": {
|
|
1333
|
+
"optional": true
|
|
1334
|
+
},
|
|
1335
|
+
"bare-events": {
|
|
1336
|
+
"optional": true
|
|
1337
|
+
}
|
|
1338
|
+
}
|
|
1339
|
+
},
|
|
1340
|
+
"node_modules/bare-string-decoder": {
|
|
1341
|
+
"version": "1.0.0",
|
|
1342
|
+
"resolved": "https://registry.npmjs.org/bare-string-decoder/-/bare-string-decoder-1.0.0.tgz",
|
|
1343
|
+
"integrity": "sha512-FjFvfHo88U7borNQSj9ijP2JTb1asqY6K28OZrix4dF9iZf5D2wi1+99CgLlHT3HtYqdwxRhDAiKu8rVstt5rQ==",
|
|
1344
|
+
"license": "Apache-2.0",
|
|
1345
|
+
"dependencies": {
|
|
1346
|
+
"text-decoder": "^1.2.3"
|
|
1347
|
+
},
|
|
1348
|
+
"peerDependencies": {
|
|
1349
|
+
"bare-buffer": "*"
|
|
1350
|
+
},
|
|
1351
|
+
"peerDependenciesMeta": {
|
|
1352
|
+
"bare-buffer": {
|
|
1353
|
+
"optional": true
|
|
1354
|
+
}
|
|
1355
|
+
}
|
|
1356
|
+
},
|
|
1357
|
+
"node_modules/bare-structured-clone": {
|
|
1358
|
+
"version": "1.5.3",
|
|
1359
|
+
"resolved": "https://registry.npmjs.org/bare-structured-clone/-/bare-structured-clone-1.5.3.tgz",
|
|
1360
|
+
"integrity": "sha512-vC/YqGsp67ZeFnpyAskwaEIXtNscnCwFVKlSk0Oh2X3AqWT6H+7DC9vVI080FohUJeuUuB9UNx4UFdDcyQgZaw==",
|
|
1361
|
+
"license": "Apache-2.0",
|
|
1362
|
+
"dependencies": {
|
|
1363
|
+
"bare-type": "^1.1.0",
|
|
1364
|
+
"compact-encoding": "^2.15.0"
|
|
1365
|
+
},
|
|
1366
|
+
"engines": {
|
|
1367
|
+
"bare": ">=1.2.0"
|
|
1368
|
+
},
|
|
1369
|
+
"peerDependencies": {
|
|
1370
|
+
"bare-buffer": "*",
|
|
1371
|
+
"bare-url": "*"
|
|
1372
|
+
},
|
|
1373
|
+
"peerDependenciesMeta": {
|
|
1374
|
+
"bare-buffer": {
|
|
1375
|
+
"optional": true
|
|
1376
|
+
},
|
|
1377
|
+
"bare-url": {
|
|
1378
|
+
"optional": true
|
|
1379
|
+
}
|
|
1380
|
+
}
|
|
1381
|
+
},
|
|
1382
|
+
"node_modules/bare-stylize": {
|
|
1383
|
+
"version": "0.0.1",
|
|
1384
|
+
"resolved": "https://registry.npmjs.org/bare-stylize/-/bare-stylize-0.0.1.tgz",
|
|
1385
|
+
"integrity": "sha512-l3MjmIl476bWijYWf3RbE+osl4iuXSOMudzp0vAqzIK7gPgn/+G3oAxp8Oin9CFF911KBP0LO9kts8Ci8mGZaQ==",
|
|
1386
|
+
"license": "Apache-2.0",
|
|
1387
|
+
"dependencies": {
|
|
1388
|
+
"bare-ansi-escapes": "^2.2.3",
|
|
1389
|
+
"bare-process": "^4.2.1"
|
|
1390
|
+
}
|
|
1391
|
+
},
|
|
1392
|
+
"node_modules/bare-subprocess": {
|
|
1393
|
+
"version": "5.2.3",
|
|
1394
|
+
"resolved": "https://registry.npmjs.org/bare-subprocess/-/bare-subprocess-5.2.3.tgz",
|
|
1395
|
+
"integrity": "sha512-07wwswlV7M3sC9IykbZRZ/jHAkrXFWVLqdBWGv1y0ojCimtRD9hGwxdHmR5FUFmDUZLNsBmTYJNQqgio5+A85Q==",
|
|
1396
|
+
"license": "Apache-2.0",
|
|
1397
|
+
"dependencies": {
|
|
1398
|
+
"bare-env": "^3.0.0",
|
|
1399
|
+
"bare-events": "^2.5.4",
|
|
1400
|
+
"bare-os": "^3.0.1",
|
|
1401
|
+
"bare-pipe": "^4.0.0",
|
|
1402
|
+
"bare-url": "^2.2.2"
|
|
1403
|
+
},
|
|
1404
|
+
"engines": {
|
|
1405
|
+
"bare": ">=1.7.0"
|
|
1406
|
+
},
|
|
1407
|
+
"peerDependencies": {
|
|
1408
|
+
"bare-buffer": "*"
|
|
1409
|
+
},
|
|
1410
|
+
"peerDependenciesMeta": {
|
|
1411
|
+
"bare-buffer": {
|
|
1412
|
+
"optional": true
|
|
1413
|
+
}
|
|
1414
|
+
}
|
|
1415
|
+
},
|
|
1416
|
+
"node_modules/bare-system-logger": {
|
|
1417
|
+
"version": "1.0.3",
|
|
1418
|
+
"resolved": "https://registry.npmjs.org/bare-system-logger/-/bare-system-logger-1.0.3.tgz",
|
|
1419
|
+
"integrity": "sha512-HXTXZyhIIS4ZDYun4J9zKNQZDfLgEkkK8wy9nrTFJE5xq8APsOhDxuEsxP0YcNwC23DW1jaNpqD51zDeXPzIdg==",
|
|
1420
|
+
"license": "Apache-2.0",
|
|
1421
|
+
"dependencies": {
|
|
1422
|
+
"bare-logger": "^2.0.0"
|
|
1423
|
+
}
|
|
1424
|
+
},
|
|
1425
|
+
"node_modules/bare-tcp": {
|
|
1426
|
+
"version": "2.2.7",
|
|
1427
|
+
"resolved": "https://registry.npmjs.org/bare-tcp/-/bare-tcp-2.2.7.tgz",
|
|
1428
|
+
"integrity": "sha512-rjpqNQ2cOCkNo3NeYA/W4GTK3DRkl8sDHO3uos+AEswUjLC8XXMQF8WrJCSjlIowCbS6NUVxKE92X5RGXjyefg==",
|
|
1429
|
+
"license": "Apache-2.0",
|
|
1430
|
+
"dependencies": {
|
|
1431
|
+
"bare-dns": "^2.0.4",
|
|
1432
|
+
"bare-events": "^2.5.4",
|
|
1433
|
+
"bare-stream": "^2.6.4"
|
|
1434
|
+
},
|
|
1435
|
+
"engines": {
|
|
1436
|
+
"bare": ">=1.16.0"
|
|
1437
|
+
}
|
|
1438
|
+
},
|
|
1439
|
+
"node_modules/bare-thread": {
|
|
1440
|
+
"version": "1.1.6",
|
|
1441
|
+
"resolved": "https://registry.npmjs.org/bare-thread/-/bare-thread-1.1.6.tgz",
|
|
1442
|
+
"integrity": "sha512-t6+mun2bpC6UlxyjWxn0bQYp8hM25XXRo6/UuoXx1mvYFZ6dHpp9nRyI0WWQk+n2Z5zb/g9hiUv6U+g4N8MQ3w==",
|
|
1443
|
+
"license": "Apache-2.0",
|
|
1444
|
+
"dependencies": {
|
|
1445
|
+
"bare-bundle": "^1.9.0",
|
|
1446
|
+
"bare-module-resolve": "^1.11.2",
|
|
1447
|
+
"bare-module-traverse": "^2.0.0"
|
|
1448
|
+
}
|
|
1449
|
+
},
|
|
1450
|
+
"node_modules/bare-timers": {
|
|
1451
|
+
"version": "3.2.1",
|
|
1452
|
+
"resolved": "https://registry.npmjs.org/bare-timers/-/bare-timers-3.2.1.tgz",
|
|
1453
|
+
"integrity": "sha512-O+9e6Jol/BoYsQUzAFXG0gWUW1GWryFMblGcNBfi3smPrD3rJIKQwpw2FJARl2j/1VHne4a8YaHPK1cxDKfiYQ==",
|
|
1454
|
+
"license": "Apache-2.0",
|
|
1455
|
+
"engines": {
|
|
1456
|
+
"bare": ">=1.7.0"
|
|
1457
|
+
},
|
|
1458
|
+
"peerDependencies": {
|
|
1459
|
+
"bare-abort-controller": "*"
|
|
1460
|
+
},
|
|
1461
|
+
"peerDependenciesMeta": {
|
|
1462
|
+
"bare-abort-controller": {
|
|
1463
|
+
"optional": true
|
|
1464
|
+
}
|
|
1465
|
+
}
|
|
1466
|
+
},
|
|
1467
|
+
"node_modules/bare-tls": {
|
|
1468
|
+
"version": "2.2.1",
|
|
1469
|
+
"resolved": "https://registry.npmjs.org/bare-tls/-/bare-tls-2.2.1.tgz",
|
|
1470
|
+
"integrity": "sha512-hZ+ZqwrUO4dyH7/6WYkYWjgAFNJKjzwEYJiDaMnMs+eRleBDjQ3CvNZawpkw0Ar9jnM9NZK6+f6GqjkZ2FLGmQ==",
|
|
1471
|
+
"license": "Apache-2.0",
|
|
1472
|
+
"dependencies": {
|
|
1473
|
+
"bare-net": "^2.0.1",
|
|
1474
|
+
"bare-stream": "^2.6.4"
|
|
1475
|
+
},
|
|
1476
|
+
"engines": {
|
|
1477
|
+
"bare": ">=1.7.0"
|
|
1478
|
+
}
|
|
1479
|
+
},
|
|
1480
|
+
"node_modules/bare-tty": {
|
|
1481
|
+
"version": "5.1.0",
|
|
1482
|
+
"resolved": "https://registry.npmjs.org/bare-tty/-/bare-tty-5.1.0.tgz",
|
|
1483
|
+
"integrity": "sha512-EZLvW4A+XiJgI3TW+e1pMME9PIJsfEXe/DA/WSKzIkq/v7Yarpv/rvG6Z5pGnpo4V/Bd+qopwnCLSR71hMMBYA==",
|
|
1484
|
+
"license": "Apache-2.0",
|
|
1485
|
+
"dependencies": {
|
|
1486
|
+
"bare-events": "^2.2.0",
|
|
1487
|
+
"bare-signals": "^4.0.0",
|
|
1488
|
+
"bare-stream": "^2.0.0"
|
|
1489
|
+
},
|
|
1490
|
+
"engines": {
|
|
1491
|
+
"bare": ">=1.16.0"
|
|
1492
|
+
}
|
|
1493
|
+
},
|
|
1494
|
+
"node_modules/bare-type": {
|
|
1495
|
+
"version": "1.1.0",
|
|
1496
|
+
"resolved": "https://registry.npmjs.org/bare-type/-/bare-type-1.1.0.tgz",
|
|
1497
|
+
"integrity": "sha512-LdtnnEEYldOc87Dr4GpsKnStStZk3zfgoEMXy8yvEZkXrcCv9RtYDrUYWFsBQHtaB0s1EUWmcvS6XmEZYIj3Bw==",
|
|
1498
|
+
"license": "Apache-2.0",
|
|
1499
|
+
"engines": {
|
|
1500
|
+
"bare": ">=1.2.0"
|
|
1501
|
+
}
|
|
1502
|
+
},
|
|
1503
|
+
"node_modules/bare-url": {
|
|
1504
|
+
"version": "2.4.0",
|
|
1505
|
+
"resolved": "https://registry.npmjs.org/bare-url/-/bare-url-2.4.0.tgz",
|
|
1506
|
+
"integrity": "sha512-NSTU5WN+fy/L0DDenfE8SXQna4voXuW0FHM7wH8i3/q9khUSchfPbPezO4zSFMnDGIf9YE+mt/RWhZgNRKRIXA==",
|
|
1507
|
+
"license": "Apache-2.0",
|
|
1508
|
+
"dependencies": {
|
|
1509
|
+
"bare-path": "^3.0.0"
|
|
1510
|
+
}
|
|
1511
|
+
},
|
|
1512
|
+
"node_modules/bare-utils": {
|
|
1513
|
+
"version": "1.6.0",
|
|
1514
|
+
"resolved": "https://registry.npmjs.org/bare-utils/-/bare-utils-1.6.0.tgz",
|
|
1515
|
+
"integrity": "sha512-WhQEIkkAxkSnW7u1QgrI0AfNm5JpMruETXeYsb5qnkBJ0TTfNKygZmsh6rkoHBANaV+C/7Jed7bJP9OmEHG7rQ==",
|
|
1516
|
+
"license": "Apache-2.0",
|
|
1517
|
+
"dependencies": {
|
|
1518
|
+
"bare-debug-log": "^2.0.0",
|
|
1519
|
+
"bare-encoding": "^1.0.0",
|
|
1520
|
+
"bare-format": "^1.0.0",
|
|
1521
|
+
"bare-inspect": "^3.0.0",
|
|
1522
|
+
"bare-stylize": "^0.0.1",
|
|
1523
|
+
"bare-type": "^1.0.6"
|
|
1524
|
+
}
|
|
1525
|
+
},
|
|
1526
|
+
"node_modules/bare-v8": {
|
|
1527
|
+
"version": "1.0.1",
|
|
1528
|
+
"resolved": "https://registry.npmjs.org/bare-v8/-/bare-v8-1.0.1.tgz",
|
|
1529
|
+
"integrity": "sha512-/cR5ZvFWQRdtTZ4tx0j7TKvTWce8UnnLqm88fwHtJmfM7HODIBVjQGDT7KkDLeD2d/eHP2pzB71Y8/QyiMMKrQ==",
|
|
1530
|
+
"license": "Apache-2.0"
|
|
1531
|
+
},
|
|
1532
|
+
"node_modules/bare-vm": {
|
|
1533
|
+
"version": "1.0.1",
|
|
1534
|
+
"resolved": "https://registry.npmjs.org/bare-vm/-/bare-vm-1.0.1.tgz",
|
|
1535
|
+
"integrity": "sha512-yLnbRvKt3AhRTmtfTIrYfdTHqGEfIJc+Fgb2DcHejE0HJ+p5adGxxPMvd3893Z7iXVYnalxukNARn4oJSZELHQ==",
|
|
1536
|
+
"license": "Apache-2.0",
|
|
1537
|
+
"dependencies": {
|
|
1538
|
+
"bare-realm": "^2.0.0"
|
|
1539
|
+
}
|
|
1540
|
+
},
|
|
1541
|
+
"node_modules/bare-worker": {
|
|
1542
|
+
"version": "4.1.6",
|
|
1543
|
+
"resolved": "https://registry.npmjs.org/bare-worker/-/bare-worker-4.1.6.tgz",
|
|
1544
|
+
"integrity": "sha512-yvsektF7xNqlAyjJV+YYeBx+sGZ8Fhbo5Cjc/lpIdkM8Gd/e3MlaxTFg8NknkyvJ4oDJXqvp38Q+ZOn5Gyr+nQ==",
|
|
1545
|
+
"license": "Apache-2.0",
|
|
1546
|
+
"dependencies": {
|
|
1547
|
+
"bare-channel": "^5.1.5",
|
|
1548
|
+
"bare-events": "^2.2.1",
|
|
1549
|
+
"bare-module": "^6.0.1",
|
|
1550
|
+
"bare-thread": "^1.1.3"
|
|
1551
|
+
}
|
|
1552
|
+
},
|
|
1553
|
+
"node_modules/bare-ws": {
|
|
1554
|
+
"version": "2.1.0",
|
|
1555
|
+
"resolved": "https://registry.npmjs.org/bare-ws/-/bare-ws-2.1.0.tgz",
|
|
1556
|
+
"integrity": "sha512-2gEWlPK9iyBchACdIY6oQXgmDz3KLrChdwrPgmU3IVXOFTnxTqSUT27WE/+izd4QojHj/SsqDkQiD2HDvuTdAA==",
|
|
1557
|
+
"license": "Apache-2.0",
|
|
1558
|
+
"dependencies": {
|
|
1559
|
+
"bare-crypto": "^1.2.0",
|
|
1560
|
+
"bare-events": "^2.3.1",
|
|
1561
|
+
"bare-http1": "^4.0.0",
|
|
1562
|
+
"bare-https": "^2.0.0",
|
|
1563
|
+
"bare-stream": "^2.1.2"
|
|
1564
|
+
},
|
|
1565
|
+
"peerDependencies": {
|
|
1566
|
+
"bare-buffer": "*",
|
|
1567
|
+
"bare-url": "*"
|
|
1568
|
+
},
|
|
1569
|
+
"peerDependenciesMeta": {
|
|
1570
|
+
"bare-buffer": {
|
|
1571
|
+
"optional": true
|
|
1572
|
+
},
|
|
1573
|
+
"bare-url": {
|
|
1574
|
+
"optional": true
|
|
1575
|
+
}
|
|
1576
|
+
}
|
|
1577
|
+
},
|
|
1578
|
+
"node_modules/bare-zlib": {
|
|
1579
|
+
"version": "1.3.1",
|
|
1580
|
+
"resolved": "https://registry.npmjs.org/bare-zlib/-/bare-zlib-1.3.1.tgz",
|
|
1581
|
+
"integrity": "sha512-VP93GFzhrTdWh9mXNocn7XsP/nF5JQluiiSsbTvsQ4yIYlhEHRMF9lQmZZDXwzK9PNYaVGUV1bdQuqp0Mj7MHw==",
|
|
1582
|
+
"license": "Apache-2.0",
|
|
1583
|
+
"dependencies": {
|
|
1584
|
+
"bare-stream": "^2.0.0"
|
|
1585
|
+
}
|
|
1586
|
+
},
|
|
1587
|
+
"node_modules/bip39": {
|
|
1588
|
+
"version": "3.1.0",
|
|
1589
|
+
"resolved": "https://registry.npmjs.org/bip39/-/bip39-3.1.0.tgz",
|
|
1590
|
+
"integrity": "sha512-c9kiwdk45Do5GL0vJMe7tS95VjCii65mYAH7DfWl3uW8AVzXKQVUm64i3hzVybBDMp9r7j9iNxR85+ul8MdN/A==",
|
|
1591
|
+
"license": "ISC",
|
|
1592
|
+
"dependencies": {
|
|
1593
|
+
"@noble/hashes": "^1.2.0"
|
|
1594
|
+
}
|
|
1595
|
+
},
|
|
1596
|
+
"node_modules/bufferutil": {
|
|
1597
|
+
"version": "4.1.0",
|
|
1598
|
+
"resolved": "https://registry.npmjs.org/bufferutil/-/bufferutil-4.1.0.tgz",
|
|
1599
|
+
"integrity": "sha512-ZMANVnAixE6AWWnPzlW2KpUrxhm9woycYvPOo67jWHyFowASTEd9s+QN1EIMsSDtwhIxN4sWE1jotpuDUIgyIw==",
|
|
1600
|
+
"hasInstallScript": true,
|
|
1601
|
+
"license": "MIT",
|
|
1602
|
+
"optional": true,
|
|
1603
|
+
"peer": true,
|
|
1604
|
+
"dependencies": {
|
|
1605
|
+
"node-gyp-build": "^4.3.0"
|
|
1606
|
+
},
|
|
1607
|
+
"engines": {
|
|
1608
|
+
"node": ">=6.14.2"
|
|
1609
|
+
}
|
|
1610
|
+
},
|
|
1611
|
+
"node_modules/call-bind-apply-helpers": {
|
|
1612
|
+
"version": "1.0.2",
|
|
1613
|
+
"resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
|
|
1614
|
+
"integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
|
|
1615
|
+
"license": "MIT",
|
|
1616
|
+
"dependencies": {
|
|
1617
|
+
"es-errors": "^1.3.0",
|
|
1618
|
+
"function-bind": "^1.1.2"
|
|
1619
|
+
},
|
|
1620
|
+
"engines": {
|
|
1621
|
+
"node": ">= 0.4"
|
|
1622
|
+
}
|
|
1623
|
+
},
|
|
1624
|
+
"node_modules/combined-stream": {
|
|
1625
|
+
"version": "1.0.8",
|
|
1626
|
+
"resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
|
|
1627
|
+
"integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
|
|
1628
|
+
"license": "MIT",
|
|
1629
|
+
"dependencies": {
|
|
1630
|
+
"delayed-stream": "~1.0.0"
|
|
1631
|
+
},
|
|
1632
|
+
"engines": {
|
|
1633
|
+
"node": ">= 0.8"
|
|
1634
|
+
}
|
|
1635
|
+
},
|
|
1636
|
+
"node_modules/compact-encoding": {
|
|
1637
|
+
"version": "2.19.2",
|
|
1638
|
+
"resolved": "https://registry.npmjs.org/compact-encoding/-/compact-encoding-2.19.2.tgz",
|
|
1639
|
+
"integrity": "sha512-/YjhHQE/5L4F7l5Bht69dRbP9RV6zoJPeowi8bMKQxNKe3Nh6hOY8pBGoVE9fz5GaWfEd8fWJ2aU9sB4KZuMYg==",
|
|
1640
|
+
"license": "Apache-2.0",
|
|
1641
|
+
"dependencies": {
|
|
1642
|
+
"b4a": "^1.3.0"
|
|
1643
|
+
}
|
|
1644
|
+
},
|
|
1645
|
+
"node_modules/delayed-stream": {
|
|
1646
|
+
"version": "1.0.0",
|
|
1647
|
+
"resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
|
|
1648
|
+
"integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
|
|
1649
|
+
"license": "MIT",
|
|
1650
|
+
"engines": {
|
|
1651
|
+
"node": ">=0.4.0"
|
|
1652
|
+
}
|
|
1653
|
+
},
|
|
1654
|
+
"node_modules/dotenv": {
|
|
1655
|
+
"version": "16.6.1",
|
|
1656
|
+
"resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.6.1.tgz",
|
|
1657
|
+
"integrity": "sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow==",
|
|
1658
|
+
"license": "BSD-2-Clause",
|
|
1659
|
+
"engines": {
|
|
1660
|
+
"node": ">=12"
|
|
1661
|
+
},
|
|
1662
|
+
"funding": {
|
|
1663
|
+
"url": "https://dotenvx.com"
|
|
1664
|
+
}
|
|
1665
|
+
},
|
|
1666
|
+
"node_modules/dunder-proto": {
|
|
1667
|
+
"version": "1.0.1",
|
|
1668
|
+
"resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
|
|
1669
|
+
"integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
|
|
1670
|
+
"license": "MIT",
|
|
1671
|
+
"dependencies": {
|
|
1672
|
+
"call-bind-apply-helpers": "^1.0.1",
|
|
1673
|
+
"es-errors": "^1.3.0",
|
|
1674
|
+
"gopd": "^1.2.0"
|
|
1675
|
+
},
|
|
1676
|
+
"engines": {
|
|
1677
|
+
"node": ">= 0.4"
|
|
1678
|
+
}
|
|
1679
|
+
},
|
|
1680
|
+
"node_modules/es-define-property": {
|
|
1681
|
+
"version": "1.0.1",
|
|
1682
|
+
"resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
|
|
1683
|
+
"integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
|
|
1684
|
+
"license": "MIT",
|
|
1685
|
+
"engines": {
|
|
1686
|
+
"node": ">= 0.4"
|
|
1687
|
+
}
|
|
1688
|
+
},
|
|
1689
|
+
"node_modules/es-errors": {
|
|
1690
|
+
"version": "1.3.0",
|
|
1691
|
+
"resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
|
|
1692
|
+
"integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
|
|
1693
|
+
"license": "MIT",
|
|
1694
|
+
"engines": {
|
|
1695
|
+
"node": ">= 0.4"
|
|
1696
|
+
}
|
|
1697
|
+
},
|
|
1698
|
+
"node_modules/es-object-atoms": {
|
|
1699
|
+
"version": "1.1.1",
|
|
1700
|
+
"resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
|
|
1701
|
+
"integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
|
|
1702
|
+
"license": "MIT",
|
|
1703
|
+
"dependencies": {
|
|
1704
|
+
"es-errors": "^1.3.0"
|
|
1705
|
+
},
|
|
1706
|
+
"engines": {
|
|
1707
|
+
"node": ">= 0.4"
|
|
1708
|
+
}
|
|
1709
|
+
},
|
|
1710
|
+
"node_modules/es-set-tostringtag": {
|
|
1711
|
+
"version": "2.1.0",
|
|
1712
|
+
"resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz",
|
|
1713
|
+
"integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==",
|
|
1714
|
+
"license": "MIT",
|
|
1715
|
+
"dependencies": {
|
|
1716
|
+
"es-errors": "^1.3.0",
|
|
1717
|
+
"get-intrinsic": "^1.2.6",
|
|
1718
|
+
"has-tostringtag": "^1.0.2",
|
|
1719
|
+
"hasown": "^2.0.2"
|
|
1720
|
+
},
|
|
1721
|
+
"engines": {
|
|
1722
|
+
"node": ">= 0.4"
|
|
1723
|
+
}
|
|
1724
|
+
},
|
|
1725
|
+
"node_modules/ethers": {
|
|
1726
|
+
"version": "6.14.4",
|
|
1727
|
+
"resolved": "https://registry.npmjs.org/ethers/-/ethers-6.14.4.tgz",
|
|
1728
|
+
"integrity": "sha512-Jm/dzRs2Z9iBrT6e9TvGxyb5YVKAPLlpna7hjxH7KH/++DSh2T/JVmQUv7iHI5E55hDbp/gEVvstWYXVxXFzsA==",
|
|
1729
|
+
"funding": [
|
|
1730
|
+
{
|
|
1731
|
+
"type": "individual",
|
|
1732
|
+
"url": "https://github.com/sponsors/ethers-io/"
|
|
1733
|
+
},
|
|
1734
|
+
{
|
|
1735
|
+
"type": "individual",
|
|
1736
|
+
"url": "https://www.buymeacoffee.com/ricmoo"
|
|
1737
|
+
}
|
|
1738
|
+
],
|
|
1739
|
+
"license": "MIT",
|
|
1740
|
+
"dependencies": {
|
|
1741
|
+
"@adraffy/ens-normalize": "1.10.1",
|
|
1742
|
+
"@noble/curves": "1.2.0",
|
|
1743
|
+
"@noble/hashes": "1.3.2",
|
|
1744
|
+
"@types/node": "22.7.5",
|
|
1745
|
+
"aes-js": "4.0.0-beta.5",
|
|
1746
|
+
"tslib": "2.7.0",
|
|
1747
|
+
"ws": "8.17.1"
|
|
1748
|
+
},
|
|
1749
|
+
"engines": {
|
|
1750
|
+
"node": ">=14.0.0"
|
|
1751
|
+
}
|
|
1752
|
+
},
|
|
1753
|
+
"node_modules/ethers/node_modules/@noble/curves": {
|
|
1754
|
+
"version": "1.2.0",
|
|
1755
|
+
"resolved": "https://registry.npmjs.org/@noble/curves/-/curves-1.2.0.tgz",
|
|
1756
|
+
"integrity": "sha512-oYclrNgRaM9SsBUBVbb8M6DTV7ZHRTKugureoYEncY5c65HOmRzvSiTE3y5CYaPYJA/GVkrhXEoF0M3Ya9PMnw==",
|
|
1757
|
+
"license": "MIT",
|
|
1758
|
+
"dependencies": {
|
|
1759
|
+
"@noble/hashes": "1.3.2"
|
|
1760
|
+
},
|
|
1761
|
+
"funding": {
|
|
1762
|
+
"url": "https://paulmillr.com/funding/"
|
|
1763
|
+
}
|
|
1764
|
+
},
|
|
1765
|
+
"node_modules/ethers/node_modules/@noble/hashes": {
|
|
1766
|
+
"version": "1.3.2",
|
|
1767
|
+
"resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.3.2.tgz",
|
|
1768
|
+
"integrity": "sha512-MVC8EAQp7MvEcm30KWENFjgR+Mkmf+D189XJTkFIlwohU5hcBbn1ZkKq7KVTi2Hme3PMGF390DaL52beVrIihQ==",
|
|
1769
|
+
"license": "MIT",
|
|
1770
|
+
"engines": {
|
|
1771
|
+
"node": ">= 16"
|
|
1772
|
+
},
|
|
1773
|
+
"funding": {
|
|
1774
|
+
"url": "https://paulmillr.com/funding/"
|
|
1775
|
+
}
|
|
1776
|
+
},
|
|
1777
|
+
"node_modules/eventemitter3": {
|
|
1778
|
+
"version": "5.0.1",
|
|
1779
|
+
"resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.1.tgz",
|
|
1780
|
+
"integrity": "sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==",
|
|
1781
|
+
"license": "MIT"
|
|
1782
|
+
},
|
|
1783
|
+
"node_modules/events-universal": {
|
|
1784
|
+
"version": "1.0.1",
|
|
1785
|
+
"resolved": "https://registry.npmjs.org/events-universal/-/events-universal-1.0.1.tgz",
|
|
1786
|
+
"integrity": "sha512-LUd5euvbMLpwOF8m6ivPCbhQeSiYVNb8Vs0fQ8QjXo0JTkEHpz8pxdQf0gStltaPpw0Cca8b39KxvK9cfKRiAw==",
|
|
1787
|
+
"license": "Apache-2.0",
|
|
1788
|
+
"dependencies": {
|
|
1789
|
+
"bare-events": "^2.7.0"
|
|
1790
|
+
}
|
|
1791
|
+
},
|
|
1792
|
+
"node_modules/fast-fifo": {
|
|
1793
|
+
"version": "1.3.2",
|
|
1794
|
+
"resolved": "https://registry.npmjs.org/fast-fifo/-/fast-fifo-1.3.2.tgz",
|
|
1795
|
+
"integrity": "sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==",
|
|
1796
|
+
"license": "MIT"
|
|
1797
|
+
},
|
|
1798
|
+
"node_modules/follow-redirects": {
|
|
1799
|
+
"version": "1.15.11",
|
|
1800
|
+
"resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.11.tgz",
|
|
1801
|
+
"integrity": "sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==",
|
|
1802
|
+
"funding": [
|
|
1803
|
+
{
|
|
1804
|
+
"type": "individual",
|
|
1805
|
+
"url": "https://github.com/sponsors/RubenVerborgh"
|
|
1806
|
+
}
|
|
1807
|
+
],
|
|
1808
|
+
"license": "MIT",
|
|
1809
|
+
"engines": {
|
|
1810
|
+
"node": ">=4.0"
|
|
1811
|
+
},
|
|
1812
|
+
"peerDependenciesMeta": {
|
|
1813
|
+
"debug": {
|
|
1814
|
+
"optional": true
|
|
1815
|
+
}
|
|
1816
|
+
}
|
|
1817
|
+
},
|
|
1818
|
+
"node_modules/form-data": {
|
|
1819
|
+
"version": "4.0.5",
|
|
1820
|
+
"resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.5.tgz",
|
|
1821
|
+
"integrity": "sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==",
|
|
1822
|
+
"license": "MIT",
|
|
1823
|
+
"dependencies": {
|
|
1824
|
+
"asynckit": "^0.4.0",
|
|
1825
|
+
"combined-stream": "^1.0.8",
|
|
1826
|
+
"es-set-tostringtag": "^2.1.0",
|
|
1827
|
+
"hasown": "^2.0.2",
|
|
1828
|
+
"mime-types": "^2.1.12"
|
|
1829
|
+
},
|
|
1830
|
+
"engines": {
|
|
1831
|
+
"node": ">= 6"
|
|
1832
|
+
}
|
|
1833
|
+
},
|
|
1834
|
+
"node_modules/function-bind": {
|
|
1835
|
+
"version": "1.1.2",
|
|
1836
|
+
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
|
|
1837
|
+
"integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
|
|
1838
|
+
"license": "MIT",
|
|
1839
|
+
"funding": {
|
|
1840
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
1841
|
+
}
|
|
1842
|
+
},
|
|
1843
|
+
"node_modules/get-intrinsic": {
|
|
1844
|
+
"version": "1.3.0",
|
|
1845
|
+
"resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
|
|
1846
|
+
"integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
|
|
1847
|
+
"license": "MIT",
|
|
1848
|
+
"dependencies": {
|
|
1849
|
+
"call-bind-apply-helpers": "^1.0.2",
|
|
1850
|
+
"es-define-property": "^1.0.1",
|
|
1851
|
+
"es-errors": "^1.3.0",
|
|
1852
|
+
"es-object-atoms": "^1.1.1",
|
|
1853
|
+
"function-bind": "^1.1.2",
|
|
1854
|
+
"get-proto": "^1.0.1",
|
|
1855
|
+
"gopd": "^1.2.0",
|
|
1856
|
+
"has-symbols": "^1.1.0",
|
|
1857
|
+
"hasown": "^2.0.2",
|
|
1858
|
+
"math-intrinsics": "^1.1.0"
|
|
1859
|
+
},
|
|
1860
|
+
"engines": {
|
|
1861
|
+
"node": ">= 0.4"
|
|
1862
|
+
},
|
|
1863
|
+
"funding": {
|
|
1864
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
1865
|
+
}
|
|
1866
|
+
},
|
|
1867
|
+
"node_modules/get-proto": {
|
|
1868
|
+
"version": "1.0.1",
|
|
1869
|
+
"resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
|
|
1870
|
+
"integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
|
|
1871
|
+
"license": "MIT",
|
|
1872
|
+
"dependencies": {
|
|
1873
|
+
"dunder-proto": "^1.0.1",
|
|
1874
|
+
"es-object-atoms": "^1.0.0"
|
|
1875
|
+
},
|
|
1876
|
+
"engines": {
|
|
1877
|
+
"node": ">= 0.4"
|
|
1878
|
+
}
|
|
1879
|
+
},
|
|
1880
|
+
"node_modules/gopd": {
|
|
1881
|
+
"version": "1.2.0",
|
|
1882
|
+
"resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
|
|
1883
|
+
"integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
|
|
1884
|
+
"license": "MIT",
|
|
1885
|
+
"engines": {
|
|
1886
|
+
"node": ">= 0.4"
|
|
1887
|
+
},
|
|
1888
|
+
"funding": {
|
|
1889
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
1890
|
+
}
|
|
1891
|
+
},
|
|
1892
|
+
"node_modules/has-symbols": {
|
|
1893
|
+
"version": "1.1.0",
|
|
1894
|
+
"resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
|
|
1895
|
+
"integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
|
|
1896
|
+
"license": "MIT",
|
|
1897
|
+
"engines": {
|
|
1898
|
+
"node": ">= 0.4"
|
|
1899
|
+
},
|
|
1900
|
+
"funding": {
|
|
1901
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
1902
|
+
}
|
|
1903
|
+
},
|
|
1904
|
+
"node_modules/has-tostringtag": {
|
|
1905
|
+
"version": "1.0.2",
|
|
1906
|
+
"resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz",
|
|
1907
|
+
"integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==",
|
|
1908
|
+
"license": "MIT",
|
|
1909
|
+
"dependencies": {
|
|
1910
|
+
"has-symbols": "^1.0.3"
|
|
1911
|
+
},
|
|
1912
|
+
"engines": {
|
|
1913
|
+
"node": ">= 0.4"
|
|
1914
|
+
},
|
|
1915
|
+
"funding": {
|
|
1916
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
1917
|
+
}
|
|
1918
|
+
},
|
|
1919
|
+
"node_modules/hasown": {
|
|
1920
|
+
"version": "2.0.2",
|
|
1921
|
+
"resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
|
|
1922
|
+
"integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
|
|
1923
|
+
"license": "MIT",
|
|
1924
|
+
"dependencies": {
|
|
1925
|
+
"function-bind": "^1.1.2"
|
|
1926
|
+
},
|
|
1927
|
+
"engines": {
|
|
1928
|
+
"node": ">= 0.4"
|
|
1929
|
+
}
|
|
1930
|
+
},
|
|
1931
|
+
"node_modules/isomorphic-ws": {
|
|
1932
|
+
"version": "5.0.0",
|
|
1933
|
+
"resolved": "https://registry.npmjs.org/isomorphic-ws/-/isomorphic-ws-5.0.0.tgz",
|
|
1934
|
+
"integrity": "sha512-muId7Zzn9ywDsyXgTIafTry2sV3nySZeUDe6YedVd1Hvuuep5AsIlqK+XefWpYTyJG5e503F2xIuT2lcU6rCSw==",
|
|
1935
|
+
"license": "MIT",
|
|
1936
|
+
"peerDependencies": {
|
|
1937
|
+
"ws": "*"
|
|
1938
|
+
}
|
|
1939
|
+
},
|
|
1940
|
+
"node_modules/isows": {
|
|
1941
|
+
"version": "1.0.7",
|
|
1942
|
+
"resolved": "https://registry.npmjs.org/isows/-/isows-1.0.7.tgz",
|
|
1943
|
+
"integrity": "sha512-I1fSfDCZL5P0v33sVqeTDSpcstAg/N+wF5HS033mogOVIp4B+oHC7oOCsA3axAbBSGTJ8QubbNmnIRN/h8U7hg==",
|
|
1944
|
+
"funding": [
|
|
1945
|
+
{
|
|
1946
|
+
"type": "github",
|
|
1947
|
+
"url": "https://github.com/sponsors/wevm"
|
|
1948
|
+
}
|
|
1949
|
+
],
|
|
1950
|
+
"license": "MIT",
|
|
1951
|
+
"peerDependencies": {
|
|
1952
|
+
"ws": "*"
|
|
1953
|
+
}
|
|
1954
|
+
},
|
|
1955
|
+
"node_modules/math-intrinsics": {
|
|
1956
|
+
"version": "1.1.0",
|
|
1957
|
+
"resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
|
|
1958
|
+
"integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
|
|
1959
|
+
"license": "MIT",
|
|
1960
|
+
"engines": {
|
|
1961
|
+
"node": ">= 0.4"
|
|
1962
|
+
}
|
|
1963
|
+
},
|
|
1964
|
+
"node_modules/mime-db": {
|
|
1965
|
+
"version": "1.52.0",
|
|
1966
|
+
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
|
|
1967
|
+
"integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
|
|
1968
|
+
"license": "MIT",
|
|
1969
|
+
"engines": {
|
|
1970
|
+
"node": ">= 0.6"
|
|
1971
|
+
}
|
|
1972
|
+
},
|
|
1973
|
+
"node_modules/mime-types": {
|
|
1974
|
+
"version": "2.1.35",
|
|
1975
|
+
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
|
|
1976
|
+
"integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
|
|
1977
|
+
"license": "MIT",
|
|
1978
|
+
"dependencies": {
|
|
1979
|
+
"mime-db": "1.52.0"
|
|
1980
|
+
},
|
|
1981
|
+
"engines": {
|
|
1982
|
+
"node": ">= 0.6"
|
|
1983
|
+
}
|
|
1984
|
+
},
|
|
1985
|
+
"node_modules/node-gyp-build": {
|
|
1986
|
+
"version": "4.8.4",
|
|
1987
|
+
"resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.4.tgz",
|
|
1988
|
+
"integrity": "sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ==",
|
|
1989
|
+
"license": "MIT",
|
|
1990
|
+
"optional": true,
|
|
1991
|
+
"peer": true,
|
|
1992
|
+
"bin": {
|
|
1993
|
+
"node-gyp-build": "bin.js",
|
|
1994
|
+
"node-gyp-build-optional": "optional.js",
|
|
1995
|
+
"node-gyp-build-test": "build-test.js"
|
|
1996
|
+
}
|
|
1997
|
+
},
|
|
1998
|
+
"node_modules/ox": {
|
|
1999
|
+
"version": "0.14.7",
|
|
2000
|
+
"resolved": "https://registry.npmjs.org/ox/-/ox-0.14.7.tgz",
|
|
2001
|
+
"integrity": "sha512-zSQ/cfBdolj7U4++NAvH7sI+VG0T3pEohITCgcQj8KlawvTDY4vGVhDT64Atsm0d6adWfIYHDpu88iUBMMp+AQ==",
|
|
2002
|
+
"funding": [
|
|
2003
|
+
{
|
|
2004
|
+
"type": "github",
|
|
2005
|
+
"url": "https://github.com/sponsors/wevm"
|
|
2006
|
+
}
|
|
2007
|
+
],
|
|
2008
|
+
"license": "MIT",
|
|
2009
|
+
"dependencies": {
|
|
2010
|
+
"@adraffy/ens-normalize": "^1.11.0",
|
|
2011
|
+
"@noble/ciphers": "^1.3.0",
|
|
2012
|
+
"@noble/curves": "1.9.1",
|
|
2013
|
+
"@noble/hashes": "^1.8.0",
|
|
2014
|
+
"@scure/bip32": "^1.7.0",
|
|
2015
|
+
"@scure/bip39": "^1.6.0",
|
|
2016
|
+
"abitype": "^1.2.3",
|
|
2017
|
+
"eventemitter3": "5.0.1"
|
|
2018
|
+
},
|
|
2019
|
+
"peerDependencies": {
|
|
2020
|
+
"typescript": ">=5.4.0"
|
|
2021
|
+
},
|
|
2022
|
+
"peerDependenciesMeta": {
|
|
2023
|
+
"typescript": {
|
|
2024
|
+
"optional": true
|
|
2025
|
+
}
|
|
2026
|
+
}
|
|
2027
|
+
},
|
|
2028
|
+
"node_modules/ox/node_modules/@adraffy/ens-normalize": {
|
|
2029
|
+
"version": "1.11.1",
|
|
2030
|
+
"resolved": "https://registry.npmjs.org/@adraffy/ens-normalize/-/ens-normalize-1.11.1.tgz",
|
|
2031
|
+
"integrity": "sha512-nhCBV3quEgesuf7c7KYfperqSS14T8bYuvJ8PcLJp6znkZpFc0AuW4qBtr8eKVyPPe/8RSr7sglCWPU5eaxwKQ==",
|
|
2032
|
+
"license": "MIT"
|
|
2033
|
+
},
|
|
2034
|
+
"node_modules/ox/node_modules/@noble/curves": {
|
|
2035
|
+
"version": "1.9.1",
|
|
2036
|
+
"resolved": "https://registry.npmjs.org/@noble/curves/-/curves-1.9.1.tgz",
|
|
2037
|
+
"integrity": "sha512-k11yZxZg+t+gWvBbIswW0yoJlu8cHOC7dhunwOzoWH/mXGBiYyR4YY6hAEK/3EUs4UpB8la1RfdRpeGsFHkWsA==",
|
|
2038
|
+
"license": "MIT",
|
|
2039
|
+
"dependencies": {
|
|
2040
|
+
"@noble/hashes": "1.8.0"
|
|
2041
|
+
},
|
|
2042
|
+
"engines": {
|
|
2043
|
+
"node": "^14.21.3 || >=16"
|
|
2044
|
+
},
|
|
2045
|
+
"funding": {
|
|
2046
|
+
"url": "https://paulmillr.com/funding/"
|
|
2047
|
+
}
|
|
2048
|
+
},
|
|
2049
|
+
"node_modules/proxy-from-env": {
|
|
2050
|
+
"version": "1.1.0",
|
|
2051
|
+
"resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz",
|
|
2052
|
+
"integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==",
|
|
2053
|
+
"license": "MIT"
|
|
2054
|
+
},
|
|
2055
|
+
"node_modules/punycode": {
|
|
2056
|
+
"version": "2.3.1",
|
|
2057
|
+
"resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz",
|
|
2058
|
+
"integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==",
|
|
2059
|
+
"license": "MIT",
|
|
2060
|
+
"engines": {
|
|
2061
|
+
"node": ">=6"
|
|
2062
|
+
}
|
|
2063
|
+
},
|
|
2064
|
+
"node_modules/pvtsutils": {
|
|
2065
|
+
"version": "1.3.6",
|
|
2066
|
+
"resolved": "https://registry.npmjs.org/pvtsutils/-/pvtsutils-1.3.6.tgz",
|
|
2067
|
+
"integrity": "sha512-PLgQXQ6H2FWCaeRak8vvk1GW462lMxB5s3Jm673N82zI4vqtVUPuZdffdZbPDFRoU8kAhItWFtPCWiPpp4/EDg==",
|
|
2068
|
+
"license": "MIT",
|
|
2069
|
+
"optional": true,
|
|
2070
|
+
"dependencies": {
|
|
2071
|
+
"tslib": "^2.8.1"
|
|
2072
|
+
}
|
|
2073
|
+
},
|
|
2074
|
+
"node_modules/pvtsutils/node_modules/tslib": {
|
|
2075
|
+
"version": "2.8.1",
|
|
2076
|
+
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
|
|
2077
|
+
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
|
|
2078
|
+
"license": "0BSD",
|
|
2079
|
+
"optional": true
|
|
2080
|
+
},
|
|
2081
|
+
"node_modules/pvutils": {
|
|
2082
|
+
"version": "1.1.5",
|
|
2083
|
+
"resolved": "https://registry.npmjs.org/pvutils/-/pvutils-1.1.5.tgz",
|
|
2084
|
+
"integrity": "sha512-KTqnxsgGiQ6ZAzZCVlJH5eOjSnvlyEgx1m8bkRJfOhmGRqfo5KLvmAlACQkrjEtOQ4B7wF9TdSLIs9O90MX9xA==",
|
|
2085
|
+
"license": "MIT",
|
|
2086
|
+
"optional": true,
|
|
2087
|
+
"engines": {
|
|
2088
|
+
"node": ">=16.0.0"
|
|
2089
|
+
}
|
|
2090
|
+
},
|
|
2091
|
+
"node_modules/require-addon": {
|
|
2092
|
+
"version": "1.2.0",
|
|
2093
|
+
"resolved": "https://registry.npmjs.org/require-addon/-/require-addon-1.2.0.tgz",
|
|
2094
|
+
"integrity": "sha512-VNPDZlYgIYQwWp9jMTzljx+k0ZtatKlcvOhktZ/anNPI3dQ9NXk7cq2U4iJ1wd9IrytRnYhyEocFWbkdPb+MYA==",
|
|
2095
|
+
"license": "Apache-2.0",
|
|
2096
|
+
"dependencies": {
|
|
2097
|
+
"bare-addon-resolve": "^1.3.0"
|
|
2098
|
+
},
|
|
2099
|
+
"engines": {
|
|
2100
|
+
"bare": ">=1.10.0"
|
|
2101
|
+
}
|
|
2102
|
+
},
|
|
2103
|
+
"node_modules/semver": {
|
|
2104
|
+
"version": "7.7.4",
|
|
2105
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-7.7.4.tgz",
|
|
2106
|
+
"integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==",
|
|
2107
|
+
"license": "ISC",
|
|
2108
|
+
"bin": {
|
|
2109
|
+
"semver": "bin/semver.js"
|
|
2110
|
+
},
|
|
2111
|
+
"engines": {
|
|
2112
|
+
"node": ">=10"
|
|
2113
|
+
}
|
|
2114
|
+
},
|
|
2115
|
+
"node_modules/sodium-native": {
|
|
2116
|
+
"version": "5.1.0",
|
|
2117
|
+
"resolved": "https://registry.npmjs.org/sodium-native/-/sodium-native-5.1.0.tgz",
|
|
2118
|
+
"integrity": "sha512-3RxgyWyJlhTsABPnJVpCI5CoTDANZTqqFrEPqr+kjfnRaBihpVtMUE3yTF40ukdoB1APXeoBNKF3MzZAIHg39g==",
|
|
2119
|
+
"license": "MIT",
|
|
2120
|
+
"dependencies": {
|
|
2121
|
+
"bare-assert": "^1.2.0",
|
|
2122
|
+
"require-addon": "^1.1.0",
|
|
2123
|
+
"which-runtime": "^1.2.1"
|
|
2124
|
+
},
|
|
2125
|
+
"engines": {
|
|
2126
|
+
"bare": ">=1.16.0"
|
|
2127
|
+
}
|
|
2128
|
+
},
|
|
2129
|
+
"node_modules/sodium-universal": {
|
|
2130
|
+
"version": "5.0.1",
|
|
2131
|
+
"resolved": "https://registry.npmjs.org/sodium-universal/-/sodium-universal-5.0.1.tgz",
|
|
2132
|
+
"integrity": "sha512-rv+aH+tnKB5H0MAc2UadHShLMslpJsc4wjdnHRtiSIEYpOetCgu8MS4ExQRia+GL/MK3uuCyZPeEsi+J3h+Q+Q==",
|
|
2133
|
+
"license": "MIT",
|
|
2134
|
+
"dependencies": {
|
|
2135
|
+
"sodium-native": "^5.0.1"
|
|
2136
|
+
},
|
|
2137
|
+
"peerDependencies": {
|
|
2138
|
+
"sodium-javascript": "~0.8.0"
|
|
2139
|
+
},
|
|
2140
|
+
"peerDependenciesMeta": {
|
|
2141
|
+
"sodium-javascript": {
|
|
2142
|
+
"optional": true
|
|
2143
|
+
}
|
|
2144
|
+
}
|
|
2145
|
+
},
|
|
2146
|
+
"node_modules/streamx": {
|
|
2147
|
+
"version": "2.25.0",
|
|
2148
|
+
"resolved": "https://registry.npmjs.org/streamx/-/streamx-2.25.0.tgz",
|
|
2149
|
+
"integrity": "sha512-0nQuG6jf1w+wddNEEXCF4nTg3LtufWINB5eFEN+5TNZW7KWJp6x87+JFL43vaAUPyCfH1wID+mNVyW6OHtFamg==",
|
|
2150
|
+
"license": "MIT",
|
|
2151
|
+
"dependencies": {
|
|
2152
|
+
"events-universal": "^1.0.0",
|
|
2153
|
+
"fast-fifo": "^1.3.2",
|
|
2154
|
+
"text-decoder": "^1.1.0"
|
|
2155
|
+
}
|
|
2156
|
+
},
|
|
2157
|
+
"node_modules/teex": {
|
|
2158
|
+
"version": "1.0.1",
|
|
2159
|
+
"resolved": "https://registry.npmjs.org/teex/-/teex-1.0.1.tgz",
|
|
2160
|
+
"integrity": "sha512-eYE6iEI62Ni1H8oIa7KlDU6uQBtqr4Eajni3wX7rpfXD8ysFx8z0+dri+KWEPWpBsxXfxu58x/0jvTVT1ekOSg==",
|
|
2161
|
+
"license": "MIT",
|
|
2162
|
+
"dependencies": {
|
|
2163
|
+
"streamx": "^2.12.5"
|
|
2164
|
+
}
|
|
2165
|
+
},
|
|
2166
|
+
"node_modules/text-decoder": {
|
|
2167
|
+
"version": "1.2.7",
|
|
2168
|
+
"resolved": "https://registry.npmjs.org/text-decoder/-/text-decoder-1.2.7.tgz",
|
|
2169
|
+
"integrity": "sha512-vlLytXkeP4xvEq2otHeJfSQIRyWxo/oZGEbXrtEEF9Hnmrdly59sUbzZ/QgyWuLYHctCHxFF4tRQZNQ9k60ExQ==",
|
|
2170
|
+
"license": "Apache-2.0",
|
|
2171
|
+
"dependencies": {
|
|
2172
|
+
"b4a": "^1.6.4"
|
|
2173
|
+
}
|
|
2174
|
+
},
|
|
2175
|
+
"node_modules/ts-essentials": {
|
|
2176
|
+
"version": "10.1.1",
|
|
2177
|
+
"resolved": "https://registry.npmjs.org/ts-essentials/-/ts-essentials-10.1.1.tgz",
|
|
2178
|
+
"integrity": "sha512-4aTB7KLHKmUvkjNj8V+EdnmuVTiECzn3K+zIbRthumvHu+j44x3w63xpfs0JL3NGIzGXqoQ7AV591xHO+XrOTw==",
|
|
2179
|
+
"license": "MIT",
|
|
2180
|
+
"peerDependencies": {
|
|
2181
|
+
"typescript": ">=4.5.0"
|
|
2182
|
+
},
|
|
2183
|
+
"peerDependenciesMeta": {
|
|
2184
|
+
"typescript": {
|
|
2185
|
+
"optional": true
|
|
2186
|
+
}
|
|
2187
|
+
}
|
|
2188
|
+
},
|
|
2189
|
+
"node_modules/tslib": {
|
|
2190
|
+
"version": "2.7.0",
|
|
2191
|
+
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.7.0.tgz",
|
|
2192
|
+
"integrity": "sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==",
|
|
2193
|
+
"license": "0BSD"
|
|
2194
|
+
},
|
|
2195
|
+
"node_modules/typescript": {
|
|
2196
|
+
"version": "6.0.2",
|
|
2197
|
+
"resolved": "https://registry.npmjs.org/typescript/-/typescript-6.0.2.tgz",
|
|
2198
|
+
"integrity": "sha512-bGdAIrZ0wiGDo5l8c++HWtbaNCWTS4UTv7RaTH/ThVIgjkveJt83m74bBHMJkuCbslY8ixgLBVZJIOiQlQTjfQ==",
|
|
2199
|
+
"license": "Apache-2.0",
|
|
2200
|
+
"optional": true,
|
|
2201
|
+
"peer": true,
|
|
2202
|
+
"bin": {
|
|
2203
|
+
"tsc": "bin/tsc",
|
|
2204
|
+
"tsserver": "bin/tsserver"
|
|
2205
|
+
},
|
|
2206
|
+
"engines": {
|
|
2207
|
+
"node": ">=14.17"
|
|
2208
|
+
}
|
|
2209
|
+
},
|
|
2210
|
+
"node_modules/udx-native": {
|
|
2211
|
+
"version": "1.19.2",
|
|
2212
|
+
"resolved": "https://registry.npmjs.org/udx-native/-/udx-native-1.19.2.tgz",
|
|
2213
|
+
"integrity": "sha512-RNYh+UhfryCsF5hE2ZOuIqcZ+qdipXK3UsarwxWJwsUQZFE3ybwz0mPjwb5ev1PMBcjFahWiepS/q0wwL51c2g==",
|
|
2214
|
+
"license": "Apache-2.0",
|
|
2215
|
+
"dependencies": {
|
|
2216
|
+
"b4a": "^1.5.0",
|
|
2217
|
+
"bare-events": "^2.2.0",
|
|
2218
|
+
"require-addon": "^1.1.0",
|
|
2219
|
+
"streamx": "^2.22.0"
|
|
2220
|
+
},
|
|
2221
|
+
"engines": {
|
|
2222
|
+
"bare": ">=1.17.4"
|
|
2223
|
+
}
|
|
2224
|
+
},
|
|
2225
|
+
"node_modules/undici-types": {
|
|
2226
|
+
"version": "6.19.8",
|
|
2227
|
+
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.19.8.tgz",
|
|
2228
|
+
"integrity": "sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==",
|
|
2229
|
+
"license": "MIT"
|
|
2230
|
+
},
|
|
2231
|
+
"node_modules/utf-8-validate": {
|
|
2232
|
+
"version": "6.0.6",
|
|
2233
|
+
"resolved": "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-6.0.6.tgz",
|
|
2234
|
+
"integrity": "sha512-q3l3P9UtEEiAHcsgsqTgf9PPjctrDWoIXW3NpOHFdRDbLvu4DLIcxHangJ4RLrWkBcKjmcs/6NkerI8T/rE4LA==",
|
|
2235
|
+
"hasInstallScript": true,
|
|
2236
|
+
"license": "MIT",
|
|
2237
|
+
"optional": true,
|
|
2238
|
+
"peer": true,
|
|
2239
|
+
"dependencies": {
|
|
2240
|
+
"node-gyp-build": "^4.3.0"
|
|
2241
|
+
},
|
|
2242
|
+
"engines": {
|
|
2243
|
+
"node": ">=6.14.2"
|
|
2244
|
+
}
|
|
2245
|
+
},
|
|
2246
|
+
"node_modules/viem": {
|
|
2247
|
+
"version": "2.47.6",
|
|
2248
|
+
"resolved": "https://registry.npmjs.org/viem/-/viem-2.47.6.tgz",
|
|
2249
|
+
"integrity": "sha512-zExmbI99NGvMdYa7fmqSTLgkwh48dmhgEqFrUgkpL4kfG4XkVefZ8dZqIKVUhZo6Uhf0FrrEXOsHm9LUyIvI2Q==",
|
|
2250
|
+
"funding": [
|
|
2251
|
+
{
|
|
2252
|
+
"type": "github",
|
|
2253
|
+
"url": "https://github.com/sponsors/wevm"
|
|
2254
|
+
}
|
|
2255
|
+
],
|
|
2256
|
+
"license": "MIT",
|
|
2257
|
+
"dependencies": {
|
|
2258
|
+
"@noble/curves": "1.9.1",
|
|
2259
|
+
"@noble/hashes": "1.8.0",
|
|
2260
|
+
"@scure/bip32": "1.7.0",
|
|
2261
|
+
"@scure/bip39": "1.6.0",
|
|
2262
|
+
"abitype": "1.2.3",
|
|
2263
|
+
"isows": "1.0.7",
|
|
2264
|
+
"ox": "0.14.7",
|
|
2265
|
+
"ws": "8.18.3"
|
|
2266
|
+
},
|
|
2267
|
+
"peerDependencies": {
|
|
2268
|
+
"typescript": ">=5.0.4"
|
|
2269
|
+
},
|
|
2270
|
+
"peerDependenciesMeta": {
|
|
2271
|
+
"typescript": {
|
|
2272
|
+
"optional": true
|
|
2273
|
+
}
|
|
2274
|
+
}
|
|
2275
|
+
},
|
|
2276
|
+
"node_modules/viem/node_modules/@noble/curves": {
|
|
2277
|
+
"version": "1.9.1",
|
|
2278
|
+
"resolved": "https://registry.npmjs.org/@noble/curves/-/curves-1.9.1.tgz",
|
|
2279
|
+
"integrity": "sha512-k11yZxZg+t+gWvBbIswW0yoJlu8cHOC7dhunwOzoWH/mXGBiYyR4YY6hAEK/3EUs4UpB8la1RfdRpeGsFHkWsA==",
|
|
2280
|
+
"license": "MIT",
|
|
2281
|
+
"dependencies": {
|
|
2282
|
+
"@noble/hashes": "1.8.0"
|
|
2283
|
+
},
|
|
2284
|
+
"engines": {
|
|
2285
|
+
"node": "^14.21.3 || >=16"
|
|
2286
|
+
},
|
|
2287
|
+
"funding": {
|
|
2288
|
+
"url": "https://paulmillr.com/funding/"
|
|
2289
|
+
}
|
|
2290
|
+
},
|
|
2291
|
+
"node_modules/viem/node_modules/ws": {
|
|
2292
|
+
"version": "8.18.3",
|
|
2293
|
+
"resolved": "https://registry.npmjs.org/ws/-/ws-8.18.3.tgz",
|
|
2294
|
+
"integrity": "sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==",
|
|
2295
|
+
"license": "MIT",
|
|
2296
|
+
"engines": {
|
|
2297
|
+
"node": ">=10.0.0"
|
|
2298
|
+
},
|
|
2299
|
+
"peerDependencies": {
|
|
2300
|
+
"bufferutil": "^4.0.1",
|
|
2301
|
+
"utf-8-validate": ">=5.0.2"
|
|
2302
|
+
},
|
|
2303
|
+
"peerDependenciesMeta": {
|
|
2304
|
+
"bufferutil": {
|
|
2305
|
+
"optional": true
|
|
2306
|
+
},
|
|
2307
|
+
"utf-8-validate": {
|
|
2308
|
+
"optional": true
|
|
2309
|
+
}
|
|
2310
|
+
}
|
|
2311
|
+
},
|
|
2312
|
+
"node_modules/which-runtime": {
|
|
2313
|
+
"version": "1.3.2",
|
|
2314
|
+
"resolved": "https://registry.npmjs.org/which-runtime/-/which-runtime-1.3.2.tgz",
|
|
2315
|
+
"integrity": "sha512-5kwCfWml7+b2NO7KrLMhYihjRx0teKkd3yGp1Xk5Vaf2JGdSh+rgVhEALAD9c/59dP+YwJHXoEO7e8QPy7gOkw==",
|
|
2316
|
+
"license": "Apache-2.0"
|
|
2317
|
+
},
|
|
2318
|
+
"node_modules/ws": {
|
|
2319
|
+
"version": "8.17.1",
|
|
2320
|
+
"resolved": "https://registry.npmjs.org/ws/-/ws-8.17.1.tgz",
|
|
2321
|
+
"integrity": "sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==",
|
|
2322
|
+
"license": "MIT",
|
|
2323
|
+
"engines": {
|
|
2324
|
+
"node": ">=10.0.0"
|
|
2325
|
+
},
|
|
2326
|
+
"peerDependencies": {
|
|
2327
|
+
"bufferutil": "^4.0.1",
|
|
2328
|
+
"utf-8-validate": ">=5.0.2"
|
|
2329
|
+
},
|
|
2330
|
+
"peerDependenciesMeta": {
|
|
2331
|
+
"bufferutil": {
|
|
2332
|
+
"optional": true
|
|
2333
|
+
},
|
|
2334
|
+
"utf-8-validate": {
|
|
2335
|
+
"optional": true
|
|
2336
|
+
}
|
|
2337
|
+
}
|
|
2338
|
+
}
|
|
2339
|
+
}
|
|
2340
|
+
}
|