-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
85 lines (85 loc) · 2.3 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
{
"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"
],
"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": "yarn build && jest .",
"upgrade": "bunx npm-check-updates -i"
},
"dependencies": {
"@ledgerhq/hw-transport": "6.31.2",
"@zondax/ledger-js": "^0.11.0",
"axios": "^1.7.4"
},
"devDependencies": {
"@ledgerhq/hw-transport-mocker": "^6.29.0",
"@ledgerhq/hw-transport-node-hid": "^6.29.0",
"@noble/curves": "^1",
"@swc/core": "^1.6.5",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/jest": "29.5.12",
"@types/node": "^20.14.9",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"bip32": "^4.0.0",
"bip32-ed25519": "https://github.com/Zondax/bip32-ed25519",
"bip39": "^3.1.0",
"blakejs": "^1.2.1",
"eslint": "^9.5.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^39.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^17.9.0",
"eslint-plugin-tsdoc": "^0.3.0",
"eslint-plugin-unused-imports": "^4.0.0",
"jest": "^29.7.0",
"jest-runner": "^29.7.0",
"jest-serial-runner": "^1.2.1",
"prettier": "^3.3.2",
"sort-package-json": "^2.10.0",
"ts-jest": "29.1.5",
"ts-node": "^10.9.2",
"typescript": "5.5.2"
},
"volta": {
"node": "20.11.1",
"bun": "1.0.20"
},
"publishConfig": {
"access": "public"
},
"moduleDirectories": [
"node_modules",
"dist"
]
}