-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.19 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
{
"name": "fiber-ts",
"version": "1.11.0",
"description": "Client package for connecting to Fiber Network",
"repository": {
"url": "https://github.com/chainbound/fiber-ts"
},
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "mempirate",
"keywords": [
"ethereum",
"mempool",
"mev",
"networking"
],
"license": "MIT",
"devDependencies": {
"@types/google-protobuf": "^3.15.6",
"@types/node": "^20.11.19",
"dotenv": "^16.4.5",
"grpc-tools": "^1.11.2",
"grpc_tools_node_protoc_ts": "^5.3.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@ethereumjs/block": "^5.1.1",
"@ethereumjs/common": "^4.2.0",
"@ethereumjs/rlp": "^5.0.2",
"@ethereumjs/tx": "^5.2.1",
"@ethereumjs/util": "^9.0.2",
"@grpc/grpc-js": "^1.6.12",
"@lodestar/types": "^1.15.1",
"ethers": "^5.7.0",
"google-protobuf": "^3.21.0",
"kzg-wasm": "^0.2.0"
},
"scripts": {
"build": "rm -rf dist && tsc --build",
"clean": "rm -rf dist && tsc --build --clean",
"prepublishOnly": "tsc --build",
"proto": "bash ./build.sh",
"test": "yarn build && node dist/test/index.js"
}
}