-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
66 lines (66 loc) · 1.77 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
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@lightclients/kevlar",
"version": "0.4.1",
"description": "Light client-based RPC Proxy for PoS Ethereum",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/shresthagrawal/kevlar.git"
},
"author": "Shresth Agrawal <[email protected]>",
"license": "MIT",
"private": false,
"type": "module",
"devDependencies": {
"@types/dotenv": "8.2.0",
"@types/express": "4.17.14",
"@types/lodash": "4.14.185",
"@types/node": "18.7.18",
"@types/yargs": "17.0.12",
"prettier": "2.6.2",
"pretty-quick": "3.1.3",
"ts-essentials": "9.1.2",
"tsx": "^4.19.1",
"typescript": "^4.6.3"
},
"dependencies": {
"@chainsafe/as-sha256": "0.4.1",
"@chainsafe/bls": "7.1.1",
"@chainsafe/ssz": "0.11.1",
"@ethereumjs/common": "4.3.0",
"@lightclients/patronum": "0.3.1",
"@lodestar/api": "1.22.0",
"@lodestar/config": "1.22.0",
"@lodestar/light-client": "1.22.0",
"@lodestar/types": "1.22.0",
"axios": "0.27.2",
"decimal.js": "10.4.1",
"dotenv": "16.0.2",
"eth-rpc-errors": "4.0.3",
"json-rpc-engine": "6.1.0",
"rust-verkle-wasm": "^0.0.1",
"yargs": "17.5.1"
},
"scripts": {
"build": "tsc",
"prepack": "npm run build",
"start": "node ./dist/provers/start-server.js",
"rpc-proxy": "tsx ./src/rpc-bundle/start-rpc.ts"
},
"bin": {
"kevlar": "dist/rpc-bundle/start-rpc.js",
"rpc-proxy": "dist/rpc-bundle/start-rpc.js",
"rpc-prover": "dist/provers/start-server.js"
},
"keywords": [
"lightclients",
"ethereum",
"pos",
"superlight",
"rpc-proxy"
],
"bugs": {
"url": "https://github.com/shresthagrawal/kevlar/issues"
},
"homepage": "https://github.com/shresthagrawal/kevlar#readme"
}