forked from trezor/trezor-suite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.13 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
{
"name": "@trezor/utxo-lib",
"version": "1.0.9",
"author": "Trezor <[email protected]>",
"homepage": "https://github.com/trezor/trezor-suite/tree/develop/packages/utxo-lib",
"description": "Client-side Bitcoin-like JavaScript library",
"npmPublishAccess": "public",
"license": "SEE LICENSE IN LICENSE.md",
"repository": {
"type": "git",
"url": "git://github.com/trezor/trezor-suite.git"
},
"bugs": {
"url": "https://github.com/trezor/trezor-suite/issues"
},
"keywords": [
"Trezor",
"bitcoin",
"altcoins",
"utxo",
"javascript"
],
"main": "./lib/index.js",
"files": [
"lib/",
"!**/*.map"
],
"types": "lib/index.d.ts",
"typings": "lib/index.d.ts",
"scripts": {
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
"test:unit": "jest --verbose -c jest.config.js",
"type-check": "tsc --build tsconfig.json",
"build:lib": "rimraf lib && yarn tsc --build ./tsconfig.lib.json",
"prepublishOnly": "yarn tsx ../../scripts/prepublishNPM.js",
"prepublish": "yarn tsx ../../scripts/prepublish.js"
},
"dependencies": {
"@trezor/utils": "workspace:*",
"bchaddrjs": "^0.5.2",
"bech32": "^2.0.0",
"bip66": "^1.1.5",
"bitcoin-ops": "^1.4.1",
"blake-hash": "^2.0.0",
"blakejs": "^1.2.1",
"bn.js": "^5.2.1",
"bs58": "^5.0.0",
"bs58check": "^3.0.1",
"create-hash": "^1.2.0",
"create-hmac": "^1.1.7",
"int64-buffer": "^1.0.1",
"pushdata-bitcoin": "^1.0.1",
"tiny-secp256k1": "^1.1.6",
"typeforce": "^1.18.0",
"varuint-bitcoin": "^1.1.2",
"wif": "^2.0.6"
},
"devDependencies": {
"@types/bchaddrjs": "^0.4.0",
"@types/bs58": "^4.0.1",
"@types/bs58check": "^2.1.0",
"@types/create-hash": "^1.2.2",
"@types/create-hmac": "^1.1.0",
"@types/wif": "^2.0.2",
"jest": "^26.6.3",
"minimaldata": "^1.0.2",
"rimraf": "^5.0.1",
"tsx": "^3.12.7",
"typescript": "4.9.5"
}
}