-
-
Notifications
You must be signed in to change notification settings - Fork 457
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.12 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.12 KB
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
{
"name": "@lodestar/reqresp",
"description": "A Typescript implementation of the Ethereum Consensus Req/Resp protocol",
"license": "Apache-2.0",
"author": "ChainSafe Systems",
"homepage": "https://github.com/ChainSafe/lodestar#readme",
"repository": {
"type": "git",
"url": "git+https://github.com:ChainSafe/lodestar.git"
},
"bugs": {
"url": "https://github.com/ChainSafe/lodestar/issues"
},
"version": "1.42.0",
"type": "module",
"exports": {
".": {
"bun": "./src/index.ts",
"types": "./lib/index.d.ts",
"import": "./lib/index.js"
},
"./utils": {
"bun": "./src/utils/index.ts",
"types": "./lib/utils/index.d.ts",
"import": "./lib/utils/index.js"
}
},
"files": [
"src",
"lib",
"!**/*.tsbuildinfo"
],
"scripts": {
"clean": "rm -rf lib && rm -f *.tsbuildinfo",
"build": "tsgo -p tsconfig.build.json",
"build:watch": "pnpm run build --watch",
"build:release": "pnpm clean && pnpm run build",
"check-build": "node -e \"(async function() { await import('./lib/index.js') })()\"",
"check-types": "tsgo",
"lint": "biome check src/ test/",
"lint:fix": "pnpm run lint --write",
"test": "pnpm test:unit",
"test:unit": "vitest run --project unit --project unit-minimal",
"check-readme": "pnpm exec ts-node ../../scripts/check_readme.ts"
},
"dependencies": {
"@chainsafe/fast-crc32c": "^4.2.0",
"@libp2p/interface": "^3.1.0",
"@libp2p/utils": "^7.0.13",
"@lodestar/config": "workspace:^",
"@lodestar/params": "workspace:^",
"@lodestar/utils": "workspace:^",
"snappy": "^7.2.2",
"snappyjs": "^0.7.0",
"uint8-varint": "^2.0.2",
"uint8arraylist": "^2.4.7"
},
"devDependencies": {
"@chainsafe/ssz": "^1.4.0",
"@libp2p/crypto": "^5.1.13",
"@libp2p/logger": "^6.2.2",
"@libp2p/peer-id": "^6.0.4",
"@lodestar/logger": "workspace:^",
"@lodestar/types": "workspace:^",
"libp2p": "3.1.6"
},
"peerDependencies": {
"libp2p": "^3.1.4"
},
"keywords": [
"ethereum",
"eth-consensus",
"beacon",
"p2p",
"reqresp",
"blockchain"
]
}