-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.21 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.21 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
{
"name": "bytechain-testnet-alpha",
"version": "0.2.1",
"description": "This is the first testnet of the bytechain network",
"type": "module",
"scripts": {
"bc-node": "tsc && node ./dist/main"
},
"keywords": [
"BlockChain",
"Cryptocurrency",
"ByteChain",
"Consensus",
"Algorithm",
"Testnet"
],
"author": "ByteChain-Labs",
"license": "Apache-2.0",
"dependencies": {
"@chainsafe/libp2p-gossipsub": "^14.1.1",
"@chainsafe/libp2p-noise": "^16.1.4",
"@chainsafe/libp2p-yamux": "^7.0.4",
"@libp2p/bootstrap": "^11.0.46",
"@libp2p/identify": "^3.0.38",
"@libp2p/kad-dht": "^15.1.10",
"@libp2p/mdns": "^11.0.46",
"@libp2p/tcp": "^10.1.17",
"@libp2p/websockets": "^9.2.18",
"@noble/curves": "^2.2.0",
"bc-web3js": "^3.2.0",
"cors": "^2.8.5",
"express": "^5.1.0",
"it-length-prefixed-stream": "^2.0.4",
"libp2p": "^2.8.12",
"socket.io": "^4.8.1"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/node": "^24.0.8",
"typescript": "^5.6.3"
}
}