-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
59 lines (59 loc) · 1.58 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "@web3modal/ethers5-react-native",
"version": "1.2.0-alpha.2",
"main": "lib/commonjs/index.js",
"types": "lib/typescript/index.d.ts",
"module": "lib/module/index.js",
"source": "src/index.tsx",
"scripts": {
"build": "bob build",
"clean": "rm -rf lib",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx"
},
"files": [
"src",
"lib",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__"
],
"keywords": [
"web3",
"crypto",
"ethereum",
"web3modal",
"walletconnect",
"react-native",
"ethers"
],
"repository": "https://github.com/WalletConnect/web3modal-react-native",
"author": "WalletConnect <[email protected]> (https://web3modal.com)",
"homepage": "https://github.com/WalletConnect/web3modal-react-native",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/WalletConnect/web3modal-react-native/issues"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"dependencies": {
"@walletconnect/ethereum-provider": "2.11.1",
"@web3modal/scaffold-react-native": "1.2.0",
"@web3modal/scaffold-utils-react-native": "1.2.0"
},
"peerDependencies": {
"@ethersproject/shims": ">=5.0.0",
"@react-native-async-storage/async-storage": ">=1.17.0",
"@react-native-community/netinfo": "*",
"ethers": ">=5.0.0 <6.0.0",
"react": ">=17",
"react-native": ">=0.68.5",
"react-native-get-random-values": "*"
},
"devDependencies": {
"@ethersproject/shims": "5.7.0",
"ethers": "5.7.2"
},
"react-native": "src/index.tsx"
}