-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.68 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
{
"name": "@lightclients/patronum",
"version": "0.1.9-0",
"description": "Patronum: Ethereum RPC proxy that verifies RPC responses against given trusted block hashes",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "git https://github.com/shresthagrawal/verifying-eth-rpc-proxy.git"
},
"author": "Shresth Agrawal <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"build": "tsc",
"prepare": "npm run build && husky install",
"prettier:check": "npx prettier -c .",
"prettier:fix": "npx prettier -w ."
},
"dependencies": {
"@ethereumjs/block": "4.0.0",
"@ethereumjs/blockchain": "6.0.0",
"@ethereumjs/common": "3.0.0",
"@ethereumjs/trie": "5.0.0",
"@ethereumjs/tx": "4.0.0",
"@ethereumjs/util": "8.0.0",
"@ethereumjs/vm": "6.0.0",
"axios": "1.1.2",
"json-rpc-2.0": "1.4.1",
"lodash": "4.17.21",
"rlp": "3.0.0",
"web3": "1.7.5"
},
"devDependencies": {
"@types/axios": "0.14.0",
"@types/decimal.js": "7.4.0",
"@types/express": "4.17.13",
"@types/lodash": "4.14.182",
"dotenv": "16.0.2",
"husky": ">=6",
"lint-staged": ">=10",
"prettier": "2.7.1",
"pretty-quick": "3.1.3",
"ts-essentials": "9.1.2",
"typescript": "^4.6.3"
},
"bugs": {
"url": "https://github.com/shresthagrawal/verifying-eth-rpc-proxy/issues"
},
"homepage": "https://github.com/shresthagrawal/verifying-eth-rpc-proxy#readme",
"directories": {
"lib": "lib",
"test": "tests"
},
"keywords": [
"lightclient",
"ethereum",
"pos",
"rpc"
],
"lint-staged": {
"*.{js,css,md}": "prettier --write"
}
}