-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.19 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.19 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
{
"name": "@zondax/ledger-substrate",
"version": "0.0.0",
"description": "TS / Node API for Substrate/Polkadot based apps running on Ledger devices",
"keywords": [
"Ledger",
"Typescript",
"Substrate",
"Kusama",
"Polkadot"
],
"homepage": "https://github.com/Zondax/ledger-substrate-js",
"bugs": {
"url": "https://github.com/Zondax/ledger-substrate-js/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Zondax/ledger-substrate-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",
"README.md"
],
"scripts": {
"build": "tsc",
"format": "FORCE_COLOR=1 prettier --write . && sort-package-json",
"format:check": "FORCE_COLOR=1 prettier --check . && sort-package-json -c",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "pnpm build && jest --passWithNoTests .",
"upgrade": "pnpm dlx npm-check-updates -i"
},
"dependencies": {
"@ledgerhq/hw-transport": "6.35.3",
"@zondax/ledger-js": "^1.3.1",
"axios": "^1.18.0",
"buffer": "^6.0.3"
},
"devDependencies": {
"@ledgerhq/hw-transport-mocker": "^6.30.0",
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@types/jest": "30.0.0",
"@types/node": "^25.0.8",
"@typescript-eslint/eslint-plugin": "^8.53.0",
"@typescript-eslint/parser": "^8.61.1",
"bip32": "^5.0.0",
"bip32-ed25519": "https://github.com/Zondax/bip32-ed25519",
"bip39": "^3.1.0",
"blakejs": "^1.2.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-tsdoc": "^0.5.0",
"eslint-plugin-unused-imports": "^4.3.0",
"jest": "^30.4.2",
"jest-runner": "^30.4.2",
"jest-serial-runner": "^1.2.2",
"prettier": "^3.7.4",
"sort-package-json": "^4.0.0",
"ts-jest": "29.4.11",
"typescript": "5.9.3"
},
"optionalDependencies": {
"@ledgerhq/hw-transport-node-hid": "^6.33.4"
},
"publishConfig": {
"access": "public"
},
"moduleDirectories": [
"node_modules",
"dist"
]
}