-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
67 lines (67 loc) · 1.47 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
65
66
67
{
"name": "@web3modal/ui-react-native",
"version": "1.3.0",
"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",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx"
},
"files": [
"src",
"lib",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__"
],
"keywords": [
"web3",
"crypto",
"ethereum",
"web3modal",
"walletconnect",
"react-native"
],
"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": {
"qrcode": "1.5.3"
},
"peerDependencies": {
"react": ">=17",
"react-native": ">=0.68.5",
"react-native-svg": ">=13"
},
"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/"
]
}