forked from paulmillr/scure-btc-signer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.49 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": "micro-btc-signer",
"version": "0.3.0",
"description": "Create, sign & decode BTC transactions with minimum deps. With Schnorr, Taproot, UTXO & PSBT",
"files": [
"index.js",
"index.d.ts",
"index.d.ts.map",
"index.ts"
],
"type": "module",
"main": "index.js",
"module": "index.js",
"types": "index.d.ts",
"dependencies": {
"@noble/secp256k1": "~1.7.0",
"@noble/hashes": "~1.1.1",
"@scure/base": "~1.1.0",
"micro-packed": "~0.3.0"
},
"devDependencies": {
"@scure/bip32": "~1.1.0",
"micro-should": "0.2.0",
"prettier": "2.6.2",
"typescript": "4.7.3",
"micro-packed-debugger": "0.3.1"
},
"author": "Paul Miller (https://paulmillr.com)",
"license": "MIT",
"homepage": "https://github.com/paulmillr/micro-btc-signer",
"repository": {
"type": "git",
"url": "git+https://github.com/paulmillr/micro-btc-signer.git"
},
"scripts": {
"build": "tsc",
"lint": "prettier --check index.ts",
"test": "node test/index.test.js && node test/psbt-test/bip174-psbt-extended.test.js",
"test:extended": "node --experimental-loader ./test/bitcoinjs-test/esm-loader.js ./test/bitcoinjs-test/index.test.js"
},
"keywords": [
"bitcoin",
"btc",
"sign",
"tx",
"transaction",
"address",
"taproot",
"schnorr",
"psbt",
"p2pkh",
"p2wpkh",
"p2sh",
"p2wsh",
"p2tr"
],
"funding": [
{
"type": "individual",
"url": "https://paulmillr.com/funding/"
}
]
}