-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.53 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.53 KB
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
61
{
"name": "@reown/appkit-react-native",
"version": "2.0.1",
"main": "lib/commonjs/index.js",
"types": "lib/typescript/index.d.ts",
"module": "lib/module/index.js",
"react-native": "src/index.ts",
"source": "src/index.ts",
"scripts": {
"build": "bob build",
"clean": "rm -rf lib",
"test": "jest",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx"
},
"files": [
"src",
"lib",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__"
],
"keywords": [
"web3",
"crypto",
"ethereum",
"appkit",
"walletconnect",
"react-native"
],
"repository": "https://github.com/reown-com/appkit-react-native",
"author": "Reown (https://discord.gg/reown)",
"homepage": "https://reown.com/appkit",
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/reown-com/appkit-react-native/issues"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public",
"provenance": true
},
"dependencies": {
"@reown/appkit-common-react-native": "2.0.1",
"@reown/appkit-core-react-native": "2.0.1",
"@reown/appkit-ui-react-native": "2.0.1",
"@walletconnect/universal-provider": "2.21.10",
"valtio": "2.1.8"
},
"peerDependencies": {
"@walletconnect/react-native-compat": ">=2.16.1",
"@walletconnect/utils": ">=2.16.1",
"react": ">=18",
"react-native": ">=0.72",
"react-native-safe-area-context": ">=4.4.0",
"react-native-svg": ">=13.10"
},
"eslintIgnore": [
"node_modules/",
"lib/"
]
}