-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 999 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 999 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
39
40
41
42
43
44
45
{
"name": "logtui",
"version": "0.2.4",
"description": "A terminal-based UI for monitoring blockchain events using Hypersync",
"main": "lib/index.js",
"bin": {
"logtui": "./bin/logtui.js"
},
"scripts": {
"start": "node ./bin/logtui.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"blockchain",
"ethereum",
"events",
"hypersync",
"terminal",
"ui",
"dashboard",
"uniswap"
],
"author": "moose-code envio.dev",
"license": "MIT",
"dependencies": {
"@envio-dev/hypersync-client": "^0.6.3",
"blessed": "^0.1.81",
"blessed-contrib": "^4.11.0",
"chalk": "^5.4.1",
"commander": "^12.0.0",
"figlet": "^1.8.0",
"node-fetch": "^3.3.2",
"supports-color": "^10.0.0",
"viem": "^2.9.6"
},
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/moose-code/logtui"
},
"homepage": "https://envio.dev",
"engines": {
"node": ">=18.0.0"
}
}