-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.01 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
67
68
69
70
71
72
73
74
{
"name": "@pryority/oplite",
"version": "0.1.0",
"description": "A Light client-based RPC Proxy for PoS Ethereum",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/pryority/oplite.git"
},
"author": "Matthew Pryor <[email protected]>",
"license": "MIT",
"private": false,
"type": "module",
"devDependencies": {
"@types/async-retry": "^1.4.5",
"@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",
"concurrently": "^7.6.0",
"prettier": "2.6.2",
"pretty-quick": "3.1.3",
"ts-essentials": "9.1.2",
"ts-node": "10.9.1",
"typescript": "^4.6.3"
},
"dependencies": {
"@chainsafe/as-sha256": "^0.3.1",
"@chainsafe/bls": "^7.1.1",
"@chainsafe/libp2p-gossipsub": "^6.0.0",
"@chainsafe/ssz": "^0.9.2",
"@lightclients/patronum": "0.1.11",
"@lodestar/api": "^1.2.0",
"@lodestar/config": "^1.2.0",
"@lodestar/light-client": "https://gitpkg.now.sh/shresthagrawal/lodestar/packages/light-client?b46d752f6bda6f8948d8a21179574cae3f02c109",
"@lodestar/types": "^1.2.0",
"@types/leveldown": "^4.0.3",
"@types/levelup": "^5.1.2",
"@types/lru-cache": "^7.10.10",
"async-retry": "^1.3.3",
"axios": "0.27.2",
"decimal.js": "10.4.1",
"dotenv": "16.0.2",
"eth-rpc-errors": "4.0.3",
"ethers": "^5.7.2",
"json-rpc-engine": "6.1.0",
"leveldown": "^6.1.1",
"levelup": "^5.1.1",
"lru-cache": "^7.14.1",
"yargs": "17.5.1"
},
"scripts": {
"build": "tsc",
"prepack": "npm run build",
"start": "npx ts-node ./src/rpc-bundle/start-rpc.ts"
},
"bin": {
"rpc-proxy": "dist/rpc-bundle/start-rpc.js"
},
"keywords": [
"lightclients",
"ethereum",
"pos",
"superlight",
"rpc-proxy",
"optimistic",
"typescript"
],
"bugs": {
"url": "https://github.com/pryority/oplite/issues"
},
"homepage": "https://github.com/pryority/oplite#readme"
}