-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
72 lines (72 loc) · 1.85 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
{
"name": "@zondax/ledger-js",
"version": "0.0.0",
"description": "TS / Node API for apps running on Ledger devices",
"keywords": [
"Zondax",
"Ledger",
"Typescript",
"Javascript"
],
"homepage": "https://github.com/Zondax/ledger-js",
"bugs": {
"url": "https://github.com/Zondax/ledger-js/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Zondax/ledger-js.git"
},
"license": "Apache-2.0",
"author": "Zondax AG",
"main": "./dist/index.js",
"types": "./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.4"
},
"devDependencies": {
"@ledgerhq/hw-transport-mocker": "^6.28.6",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/jest": "29.5.14",
"@types/node": "^22.4.1",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.14.0",
"eslint": "^9.4.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^17.8.1",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-tsdoc": "^0.3.0",
"eslint-plugin-unused-imports": "^4.0.0",
"prettier": "^3.3.2",
"sort-package-json": "^2.10.1",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"volta": {
"node": "20.11.1",
"bun": "1.0.20"
},
"publishConfig": {
"access": "public"
},
"moduleDirectories": [
"node_modules",
"dist"
]
}