forked from landabaso/bitcoinjs-message
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.25 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.25 KB
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
{
"name": "@bitcoinerlab/btcmessage",
"version": "4.0.1",
"description": "Fork of bitcoinjs-message",
"keywords": [
"bitcoinjs-message",
"bitcoin"
],
"homepage": "https://github.com/bitcoinerlab/bitcoinjs-message",
"bugs": {
"url": "https://github.com/bitcoinerlab/bitcoinjs-message/issues"
},
"license": "MIT",
"files": [
"index.js",
"index.d.ts"
],
"main": "./index.js",
"types": "./index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/bitcoinerlab/bitcoinjs-message.git"
},
"scripts": {
"format": "npm run prettier -- --write",
"format:check": "prettier --check '**/*.{ts,js,json}'",
"prettier": "prettier '**/*.{ts,js,json}'",
"coverage": "nyc tape test/*.js",
"prepublish": "npm run test",
"test": "npm run format:check && npm run unit",
"unit": "tape test/*.js"
},
"dependencies": {
"@noble/hashes": "^1.2.0",
"bech32": "^2.0.0",
"bs58check": "^4.0.0",
"uint8array-tools": "^0.0.9",
"varuint-bitcoin": "^2.0.0"
},
"devDependencies": {
"bitcoinjs-lib": "^7.0.1",
"ecpair": "^3.0.1",
"nyc": "^14.1.1",
"prettier": "^3.2.5",
"tape": "^4.5.1",
"tiny-secp256k1": "^2.2.4"
},
"engines": {
"node": ">=20.0.0"
}
}