-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 940 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 940 Bytes
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
{
"name": "chain-lens",
"version": "1.0.0",
"description": "Bitcoin transaction and block analyzer — CLI + web visualizer",
"author": "Priyanshu Kumar",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Priyanshu-u07/chain-lens"
},
"keywords": [
"bitcoin",
"blockchain",
"transaction-parser",
"segwit",
"taproot",
"cli",
"visualizer"
],
"main": "dist/cli.js",
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"cli": "node dist/cli.js"
},
"dependencies": {
"@types/multer": "^2.0.0",
"bech32": "^2.0.0",
"bs58check": "^2.1.2",
"express": "^4.21.2",
"multer": "^2.0.2"
},
"devDependencies": {
"@types/express": "^4.17.25",
"@types/node": "^18.11.18",
"typescript": "^5.4.5"
}
}