forked from Zondax/ledger-cosmos-js
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
97 lines (97 loc) · 2.49 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
{
"name": "@zondax/ledger-cosmos-js",
"author": "Zondax AG",
"license": "Apache-2.0",
"version": "4.0.0",
"description": "Node API for Cosmos App (Ledger Nano S/S+/X)",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/cosmos/ledger-cosmos-js.git"
},
"keywords": [
"Ledger",
"Typescript",
"Tendermint",
"Cosmos"
],
"bugs": {
"url": "https://github.com/cosmos/ledger-cosmos-js/issues"
},
"homepage": "https://github.com/cosmos/ledger-cosmos-js",
"resolutions": {
"@ledgerhq/hw-transport": "6.27.1",
"@ledgerhq/devices": "6.27.1",
"@ledgerhq/hw-transport-node-hid": "6.27.1",
"@ledgerhq/hw-transport-node-hid-noevents": "6.27.1"
},
"dependencies": {
"@ledgerhq/hw-transport": "6.30.6",
"@zondax/ledger-js": "^0.10.0",
"bech32": "^2.0.0",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"ripemd160": "^2.0.2",
"stream-browserify": "^3.0.0"
},
"devDependencies": {
"@ledgerhq/hw-transport-node-hid": "6.28.6",
"@ledgerhq/hw-transport-webusb": "6.28.6",
"@ledgerhq/hw-transport-mocker": "^6.28.6",
"@swc/core": "^1.6.1",
"@types/jest": "^29.5.12",
"@types/ledgerhq__hw-transport": "4.21.8",
"@types/node": "^20.14.2",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"bip32": "4.0.0",
"bip39": "3.1.0",
"copyfiles": "^2.4.1",
"core-js": "^3.37.1",
"crypto-js": "4.2.0",
"eslint": "^9.5.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-unused-imports": "^3.2.0",
"eslint-plugin-tsdoc": "^0.2.17",
"jest": "^29.7.0",
"jest-serial-runner": "^1.2.0",
"prettier": "^3.3.2",
"secp256k1": "^5.0.0",
"ts-jest": "29.1.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"webpack": "^5.92.0"
},
"moduleDirectories": [
"node_modules",
"dist"
],
"browserslist": [
"> 1%",
"last 2 versions"
],
"files": [
"dist/*",
"LICENSE",
"yarn.lock"
],
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"@babel/core": "^7.17.5",
"@types/node": "^17.0.21"
},
"scripts": {
"build": "tsc",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write .",
"test": "yarn build && jest"
}
}