-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
60 lines (60 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
60
{
"name": "@reown/appkit-ethers-react-native",
"version": "1.2.1",
"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",
"appkit",
"walletconnect",
"react-native",
"ethers"
],
"repository": "https://github.com/reown-com/appkit-react-native",
"author": "Reown <[email protected]> (https://reown.com)",
"homepage": "https://reown.com/appkit",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/reown-com/appkit-react-native/issues"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"dependencies": {
"@reown/appkit-common-react-native": "1.2.1",
"@reown/appkit-scaffold-react-native": "1.2.1",
"@reown/appkit-scaffold-utils-react-native": "1.2.1",
"@reown/appkit-siwe-react-native": "1.2.1",
"@walletconnect/ethereum-provider": "2.17.3"
},
"peerDependencies": {
"@react-native-async-storage/async-storage": ">=1.17.0",
"@react-native-community/netinfo": "*",
"@walletconnect/react-native-compat": ">=2.13.1",
"ethers": ">=6.0.0",
"react": ">=17",
"react-native": ">=0.68.5",
"react-native-get-random-values": "*"
},
"devDependencies": {
"ethers": "6.10.0"
},
"react-native": "src/index.tsx"
}