-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.48 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.48 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
{
"name": "cli",
"version": "0.0.1",
"description": "",
"main": "index.js",
"type": "module",
"engines": {
"node": "^22"
},
"devDependencies": {
"@lodestar/api": "^1.12.0",
"@types/debug": "^4.1.7",
"@types/node": "18.11.18",
"@types/tape": "^4.13.2",
"@types/yargs": "^17.0.7",
"@vitest/ui": "^3.0.2",
"alchemy-sdk": "^3.0.0",
"kzg-wasm": "^0.5.0",
"nodemon": "^2.0.19",
"vitest": "^3.0.2"
},
"dependencies": {
"@chainsafe/discv5": "^11.0.2",
"@chainsafe/enr": "^5.0.1",
"@chainsafe/persistent-merkle-tree": "^0.8.0",
"@chainsafe/ssz": "^0.17.1",
"@ethereumjs/block": "^10.0.0",
"@ethereumjs/rlp": "^10.0.0",
"@ethereumjs/mpt": "^10.0.0",
"@ethereumjs/tx": "^10.0.0",
"@ethereumjs/util": "^10.0.0",
"@ethereumjs/vm": "^10.0.0",
"@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.2.3",
"debug": "^4.3.3",
"jayson": "^4.0.0",
"level": "^8.0.0",
"portalnetwork": "^0.0.2-rc2",
"prom-client": "^14.0.1",
"yargs": "^17.3.0"
},
"peerDependencies": {
"alchemy-sdk": "^3.0.0-beta.3"
},
"peerDependenciesMeta": {
"alchemy-sdk": {
"optional": true
}
},
"scripts": {
"start": "tsx --conditions=typescript src/index.ts",
"devnet": "tsx scripts/devnet.ts ",
"dev": "tsx --conditions=typescript src/index.ts --bindAddress=127.0.0.1:9000 --pk=0x0a27002508021221031947fd30ff7c87d8c7ff2c0ad1515624d247970f946efda872e884a432abb634122508021221031947fd30ff7c87d8c7ff2c0ad1515624d247970f946efda872e884a432abb6341a2408021220456aad29a26c39bf438813d30bb3f0730b8b776ebc4cb0721a3d9a5b3955380e --dataDir='./dist/data'",
"dev-testnet": "tsx --conditions=typescript src/index.ts --bindAddress=0.0.0.0:9000 --pk=0x0a27002508021221031947fd30ff7c87d8c7ff2c0ad1515624d247970f946efda872e884a432abb634122508021221031947fd30ff7c87d8c7ff2c0ad1515624d247970f946efda872e884a432abb6341a2408021220456aad29a26c39bf438813d30bb3f0730b8b776ebc4cb0721a3d9a5b3955380e --dataDir='./dist/data' --bootnodeList=./bootnodes.txt",
"build": "tsc && cp bootnodes.txt ./dist",
"test": "npx vitest run test/* -c=./vitest.config.unit.ts",
"lint": "../../config/cli/lint.sh",
"lint:fix": "../../config/cli/lint-fix.sh"
},
"author": "acolytec3",
"license": "MIT",
"nodemonConfig": {
"watch": ["src", "../portalnetwork/dist"]
}
}