This repository was archived by the owner on Feb 19, 2026. It is now read-only.
forked from bitcoinjs/bitcoinjs-message
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.18 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.18 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
{
"name": "@jl.landabaso/btcmessage",
"version": "3.0.0",
"description": "Fork of bitcoinjs-message",
"keywords": [
"bitcoinjs-message",
"bitcoin"
],
"homepage": "https://github.com/landabaso/bitcoinjs-message",
"bugs": {
"url": "https://github.com/landabaso/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/landabaso/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": {
"bech32": "^1.1.4",
"bs58check": "^3.0.1",
"varuint-bitcoin": "^1.1.2"
},
"devDependencies": {
"bitcoinjs-lib": "^6.1.5",
"ecpair": "^2.1.0",
"nyc": "^14.1.1",
"prettier": "^3.2.5",
"tape": "^4.5.1",
"tiny-secp256k1": "^2.2.3"
},
"engines": {
"node": ">=0.10"
}
}