-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
64 lines (64 loc) · 1.4 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
61
62
63
64
{
"name": "@reown/appkit-auth-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.ts",
"scripts": {
"build": "bob build",
"clean": "rm -rf lib",
"test": "jest --passWithNoTests",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx"
},
"files": [
"src",
"lib"
],
"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-wallet-react-native": "1.2.1"
},
"peerDependencies": {
"ethers": ">=5"
},
"react-native": "src/index.ts",
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"tsc": "../../node_modules/.bin/tsc"
}
]
]
},
"eslintIgnore": [
"node_modules/",
"lib/"
]
}