-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.62 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
{
"name": "@haqq/provider-ledger-react-native",
"version": "0.0.28",
"description": "Provider for react-native ledger",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/haqq-network/haqq-wallet-provider-ledger-react-native",
"author": "vivalaakam",
"license": "MIT",
"private": false,
"scripts": {
"test": "jest --config jestconfig.json --passWithNoTests",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"typescript:check": "tsc",
"prettier:check": "prettier --check ./src",
"prettier:format": "prettier --write \"src/**/*.ts\"",
"typedoc": "typedoc"
},
"dependencies": {
"@ethersproject/abstract-provider": "^5.7.0",
"@ledgerhq/hw-app-eth": "6.35.4",
"@ledgerhq/hw-transport": "6.30.3",
"@ledgerhq/react-native-hw-transport-ble": "6.30.0",
"ethers": "^5.7.2",
"events": "^3.3.0",
"rxjs": "^7.8.0"
},
"peerDependencies": {
"@haqq/provider-base": "*",
"react": "*",
"react-native": "*",
"react-native-ble-plx": "*"
},
"devDependencies": {
"@haqq/provider-base": "0.0.23",
"@ledgerhq/types-devices": "^6.23.0",
"@types/jest": "^29.4.0",
"@types/node": "^18.14.1",
"@types/react-native": "^0.71.3",
"jest": "^29.4.3",
"prettier": "^2.8.4",
"react": "18.2.0",
"react-native": "0.71.3",
"react-native-ble-plx": "^2.0.3",
"ts-jest": "^29.0.5",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typedoc": "^0.23.25",
"typedoc-plugin-markdown": "^3.14.0",
"typescript": "^4.9.5"
}
}