-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.62 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
{
"name": "@zondax/ledger-zcash",
"version": "0.0.0",
"description": "TS / Node API for Zcash App (Ledger devices)",
"keywords": [
"Zondax",
"Ledger",
"Typescript",
"Javascript",
"Zcash"
],
"homepage": "https://github.com/zondax/ledger-zcash",
"bugs": {
"url": "https://github.com/zondax/ledger-zcash/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zondax/ledger-zcash.git"
},
"license": "Apache-2.0",
"author": "Zondax AG",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**"
],
"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": {
"@zondax/ledger-js": "^0.10.0"
},
"devDependencies": {
"@ledgerhq/hw-transport-mocker": "^6.29.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/jest": "29.5.12",
"@types/node": "^20.14.10",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"eslint": "^9.6.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-tsdoc": "^0.3.0",
"eslint-plugin-unused-imports": "^4.0.0",
"prettier": "^3.3.2",
"sort-package-json": "^2.13.0",
"ts-jest": "^29.2.2",
"typescript": "^5.5.3"
},
"volta": {
"node": "20.11.1",
"bun": "1.0.20"
},
"publishConfig": {
"access": "public"
}
}