-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
53 lines (53 loc) · 1.09 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
{
"name": "bsv-minimal",
"version": "2.0.1",
"description": "Parse raw bitcoin block and transaction buffers with minimal overhead",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib",
"src"
],
"scripts": {
"test": "ts-node ./tests/index.ts",
"build": "tsc",
"docs": "typedoc",
"prepare": "npm run build && npm test && npm run docs"
},
"author": "Kevin Johnson <[email protected]>",
"contributors": [
"Andrew Johnson <[email protected]>"
],
"license": "MIT",
"engines": {
"node": ">=12.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/kevinejohn/bsv-minimal.git"
},
"keywords": [
"bitcoin",
"BSV",
"BTC",
"BCH",
"XEC",
"segwit",
"blocks",
"block",
"blockchain",
"transaction",
"parse"
],
"devDependencies": {
"@types/node": "^20.8.8",
"pako": "^2.1.0",
"ts-node": "^10.9.1",
"typedoc": "^0.25.2",
"typedoc-plugin-markdown": "^3.16.0",
"typescript": "^5.2.2"
},
"dependencies": {
"source-map-support": "^0.5.21"
}
}