-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
79 lines (79 loc) · 2.32 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
75
76
77
78
79
{
"name": "portalnetwork",
"version": "0.0.2-rc3",
"description": "",
"main": "dist/index.js",
"type": "module",
"engines": {
"node": "^20"
},
"scripts": {
"dev": "tsc --watch",
"build": "tsc",
"docs": "typedoc src/index.ts",
"test": "npx vitest run test/* -c=./vitest.config.unit.ts",
"test:integration": "npx vitest run ./test/integration/ -c=./vitest.config.integration.ts",
"typecheck": "tsc -p ./tsconfig.types.json",
"coverage": "c8 npm run test",
"coverage:all": "c8 npm run test:all",
"lint": "../../config/cli/lint.sh",
"lint:fix": "../../config/cli/lint-fix.sh"
},
"types": "dist/index.d.ts",
"author": "acolytec3",
"license": "MIT",
"dependencies": {
"@chainsafe/as-sha256": "^0.5.0",
"@chainsafe/blst": "^2.0.3",
"@chainsafe/discv5": "^10.0.1",
"@chainsafe/enr": "^4.0.1",
"@chainsafe/persistent-merkle-tree": "^0.8.0",
"@chainsafe/ssz": "^0.17.1",
"@ethereumjs/block": "^5.3.0",
"@ethereumjs/evm": "^3.0.0",
"@ethereumjs/genesis": "^0.2.2",
"@ethereumjs/rlp": "^5.0.2",
"@ethereumjs/statemanager": "^2.3.0",
"@ethereumjs/trie": "^6.2.0",
"@ethereumjs/util": "^9.0.3",
"@ethereumjs/vm": "^8.0.0",
"@frontall/capacitor-udp": "^0.3.4",
"@libp2p/crypto": "5.0.2",
"@lodestar/config": "^1.21.0",
"@lodestar/light-client": "^1.21.0",
"@lodestar/params": "^1.21.0",
"@lodestar/types": "^1.21.0",
"@multiformats/multiaddr": "^12.1.10",
"@thi.ng/leb128": "^2.1.11",
"abstract-level": "^1.0.3",
"debug": "^4.3.2",
"ethereum-cryptography": "^3.0.0",
"ethers": "^6.8.0",
"eventemitter3": "^5.0.1",
"heap-js": "^2.5.0",
"isomorphic-ws": "^4.0.1",
"level": "^8.0.0",
"lru-cache": "^10.0.0",
"memory-level": "^1.0.0",
"prom-client": "^14.0.1",
"strict-event-emitter-types": "^2.0.0",
"websocket-as-promised": "^2.0.1",
"ws": "^8.2.1"
},
"devDependencies": {
"@ethereumjs/common": "^4.0.1",
"@ethereumjs/tx": "^5.0.1",
"@types/debug": "^4.1.7",
"@types/js-yaml": "^4.0.9",
"@types/ws": "^7.4.7",
"@vitest/ui": "^1.2.2",
"c8": "^7.12.0",
"eslint": "^8.6.0",
"js-yaml": "^4.1.0",
"tslib": "^2.3.1",
"typedoc": "^0.24.0",
"typedoc-plugin-markdown": "^3.11.3",
"typescript": "^5.7.2",
"vitest": "^1.2.2"
}
}