-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 3.59 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@haqq/rn-wallet-providers",
"version": "0.0.11",
"description": "React Native providers for Haqq wallet",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"devEntryPoint": "src/index.ts",
"files": [
"dist/**/*",
"src"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/haqq-network/haqq-rn-wallet-providers.git"
},
"scripts": {
"test": "jest --config jestconfig.json --passWithNoTests",
"build": "yarn format && yarn test && rm -rf ./dist && tsc",
"format": "yarn lint --fix && prettier --write \"src/**/*.ts\"",
"lint": "eslint ./src --ext .js,.jsx,.ts,.tsx",
"typescript:check": "tsc",
"prettier:check": "prettier --check ./src",
"prettier:format": "prettier --write \"src/**/*.ts\"",
"typedoc": "typedoc"
},
"dependencies": {
"@ethersproject/abstract-provider": "^5.7.0",
"@ethersproject/bytes": "^5.7.0",
"@ethersproject/transactions": "^5.7.0",
"@keystonehq/bc-ur-registry-eth": "^0.7.7",
"@keystonehq/ur-decoder": "^0.12.2",
"@ledgerhq/hw-app-eth": "6.35.4",
"@ledgerhq/hw-transport": "6.30.3",
"@ledgerhq/react-native-hw-transport-ble": "6.30.0",
"bech32-converting": "^1.0.9",
"bip32": "1.0.4",
"bip39": "^3.1.0",
"ethers": "^5.7.2",
"events": "^3.3.0",
"rxjs": "^7.8.0",
"tronweb": "6.0.0"
},
"peerDependencies": {
"@haqq/encryption-react-native": "*",
"@haqq/provider-web3-utils": "*",
"@haqq/shared-react-native": "*",
"react": "*",
"react-native": "*",
"react-native-ble-plx": "*",
"react-native-encrypted-storage": "*"
},
"devDependencies": {
"@haqq/encryption-react-native": "^0.0.3",
"@haqq/provider-web3-utils": "^0.0.13",
"@haqq/shared-react-native": "^0.0.8",
"@ledgerhq/types-devices": "^6.23.0",
"@react-native-community/eslint-config": "3.2.0",
"@types/jest": "^29.5.1",
"@types/node": "^20.1.2",
"@types/react-native": "^0.71.12",
"@typescript-eslint/eslint-plugin": "6.0.0",
"@typescript-eslint/parser": "6.0.0",
"eslint": "8.45.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jest": "27.4.2",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-react-native": "4.0.0",
"jest": "^29.5.0",
"prettier": "3.0.0",
"prettier-plugin-sort-json": "4.0.0",
"react": "18.2.0",
"react-native-ble-plx": "^2.0.3",
"react-native-encrypted-storage": "^4.0.3",
"ts-jest": "^29.1.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typedoc": "^0.24.7",
"typedoc-plugin-markdown": "^3.15.3",
"typescript": "^5.0.4"
},
"react-native": {
"crypto": "react-native-crypto",
"http": "@tradle/react-native-http",
"https": "https-browserify",
"os": "react-native-os",
"_stream_transform": "readable-stream/transform",
"_stream_readable": "readable-stream/readable",
"_stream_writable": "readable-stream/writable",
"_stream_duplex": "readable-stream/duplex",
"_stream_passthrough": "readable-stream/passthrough",
"stream": "stream-browserify",
"vm": "vm-browserify"
},
"browser": {
"_stream_duplex": "readable-stream/duplex",
"_stream_passthrough": "readable-stream/passthrough",
"_stream_readable": "readable-stream/readable",
"_stream_transform": "readable-stream/transform",
"_stream_writable": "readable-stream/writable",
"crypto": "react-native-crypto",
"http": "@tradle/react-native-http",
"https": "https-browserify",
"os": "react-native-os",
"stream": "stream-browserify",
"vm": "vm-browserify"
},
"packageManager": "[email protected]"
}