-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 2.48 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "@blooo/hw-app-acre",
"version": "1.1.1",
"description": "Ledger Hardware Wallet Acre Application API",
"keywords": [
"Ledger",
"LedgerWallet",
"btc",
"Bitcoin",
"Acre",
"NanoS",
"Blue",
"Hardware Wallet"
],
"repository": {
"type": "git",
"url": "https://github.com/blooo-io/hw-app-acre.git"
},
"bugs": {
"url": "https://github.com/blooo-io/hw-app-acre/issues"
},
"homepage": "https://github.com/blooo-io/hw-app-acre",
"publishConfig": {
"access": "public"
},
"main": "lib/Acre.js",
"module": "lib-es/Acre.js",
"types": "lib/Acre.d.ts",
"typesVersions": {
"*": {
"lib/*": [
"lib/*"
],
"lib-es/*": [
"lib-es/*"
],
"*": [
"lib/*",
"lib/Acre.d.ts"
]
}
},
"exports": {
"./lib/*": "./lib/*.js",
"./lib/*.js": "./lib/*.js",
"./lib-es/*": "./lib-es/*.js",
"./lib-es/*.js": "./lib-es/*.js",
"./*": {
"require": "./lib/*.js",
"default": "./lib-es/*.js"
},
"./*.js": {
"require": "./lib/*.js",
"default": "./lib-es/*.js"
},
".": {
"require": "./lib/Acre.js",
"default": "./lib-es/Acre.js"
},
"./package.json": "./package.json"
},
"license": "Apache-2.0",
"dependencies": {
"@ledgerhq/hw-transport": "6.31.3",
"@ledgerhq/logs": "6.12.0",
"bip32-path": "^0.4.2",
"bitcoinjs-lib": "^5.2.0",
"bs58": "^4.0.1",
"bs58check": "^2.1.2",
"invariant": "^2.2.4",
"ripemd160": "2",
"semver": "^7.3.5",
"sha.js": "2",
"tiny-secp256k1": "1.1.6",
"typescript": "^5.5.4",
"varuint-bitcoin": "1.1.2"
},
"devDependencies": {
"@ledgerhq/hw-transport-mocker": "6.29.3",
"@ledgerhq/hw-transport-node-speculos": "6.29.3",
"@types/jest": "^29.5.10",
"@types/node": "^20.8.10",
"axios": "^0.25.0",
"documentation": "14.0.2",
"jest": "^29.7.0",
"rimraf": "^4.4.1",
"source-map-support": "^0.5.21",
"ts-jest": "^29.1.1",
"ts-node": "^10.4.0"
},
"scripts": {
"clean": "rimraf lib lib-es",
"build": "tsc && tsc -m ES6 --outDir lib-es",
"prewatch": "pnpm build",
"watch": "tsc --watch",
"doc": "documentation readme src/** --section=API --pe ts --re ts --re d.ts",
"lint": "eslint ./src --no-error-on-unmatched-pattern --ext .ts,.tsx --cache",
"lint:fix": "pnpm lint --fix",
"test": "jest",
"unimported": "unimported"
},
"gitHead": "dd0dea64b58e5a9125c8a422dcffd29e5ef6abec"
}