-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.16 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.16 KB
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
{
"name": "@zondax/ledger-cosmos-js",
"version": "4.0.0",
"description": "Node API for Cosmos App (Ledger Nano S/S+/X)",
"keywords": [
"Ledger",
"Typescript",
"Tendermint",
"Cosmos"
],
"homepage": "https://github.com/Zondax/ledger-cosmos-js",
"bugs": {
"url": "https://github.com/Zondax/ledger-cosmos-js/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cosmos/ledger-cosmos-js.git"
},
"license": "Apache-2.0",
"author": "Zondax AG",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"typings": "./dist/index.d.ts",
"files": [
"dist/**",
"LICENSE",
"package.json"
],
"scripts": {
"build": "tsc",
"format": "FORCE_COLOR=1 prettier --write . && sort-package-json",
"format:check": "FORCE_COLOR=1 prettier --check .",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "pnpm build && jest .",
"upgrade": "pnpm dlx npm-check-updates -i"
},
"dependencies": {
"@ledgerhq/hw-transport": "6.31.9",
"@noble/hashes": "^1.8.0",
"@scure/base": "^1.2.6",
"@zondax/ledger-js": "^1.3.1",
"buffer": "^6.0.3",
"ripemd160": "^2.0.2"
},
"devDependencies": {
"@ledgerhq/hw-transport-mocker": "^6.29.9",
"@ledgerhq/hw-transport-node-hid": "^6.29.10",
"@noble/curves": "^1.9.7",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/jest": "^30.0.0",
"@types/node": "^24.3.0",
"@typescript-eslint/eslint-plugin": "^8.40.0",
"@typescript-eslint/parser": "^8.40.0",
"bip32": "5.0.0-rc.0",
"bip39": "3.1.0",
"eslint": "^9.33.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.0.1",
"eslint-plugin-tsdoc": "^0.4.0",
"eslint-plugin-unused-imports": "^4.2.0",
"jest": "^30.0.5",
"jest-runner": "^30.0.5",
"jest-serial-runner": "^1.2.2",
"prettier": "^3.6.2",
"sort-package-json": "^3.4.0",
"ts-jest": "29.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.2"
},
"volta": {
"node": "20.11.1"
},
"publishConfig": {
"access": "public"
},
"moduleDirectories": [
"node_modules",
"dist"
]
}