-
Notifications
You must be signed in to change notification settings - Fork 772
/
package.json
106 lines (106 loc) · 4.23 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@ethereumjs/client",
"version": "0.10.3",
"description": "EthereumJS Execution Layer (EL) Client Implementation",
"keywords": ["ethereum", "ethereumjs", "client", "blockchain", "light sync", "full sync"],
"homepage": "https://github.com/ethereumjs/ethereumjs-monorepo/tree/master/packages/client#readme",
"bugs": {
"url": "https://github.com/ethereumjs/ethereumjs-monorepo/issues?q=is%3Aissue+label%3A%22package%3A+client%22"
},
"repository": {
"type": "git",
"url": "https://github.com/ethereumjs/ethereumjs-monorepo.git"
},
"license": "MPL-2.0",
"author": "Vinay Pulim ([email protected])",
"type": "module",
"main": "dist/esm/bin/cli.js",
"types": "dist/esm/src/index.d.ts",
"bin": {
"ethereumjs": "dist/esm/bin/cli.js"
},
"files": ["dist"],
"scripts": {
"binWorkaround": "test -f dist/bin/cli.js || echo 'install fails if bin script does not exist (https://github.com/npm/cli/issues/2632), creating placeholder file at \"dist/bin/cli.js\"' && mkdir -p 'dist/bin' && touch dist/bin/cli.js",
"build": "npm run build:common && mkdir -p ./src/trustedSetup/ && cp -Rf ./src/trustedSetups ./dist/src/",
"build:common": "./scripts/ts-build.sh && ./scripts/postBuildFixes.sh",
"bundle": "webpack",
"clean": "../../config/cli/clean-package.sh",
"client:start:ts": "tsx bin/cli.ts",
"client:start:js": "npm run build && node dist/esm/bin/cli.js",
"client:start": "npm run client:start:js --",
"client:start:dev1": "npm run client:start -- --discDns=false --discV4=false --bootnodes",
"client:start:dev2": "npm run client:start -- --discDns=false --discV4=false --port=30304 --dataDir=datadir-dev2",
"coverage": "npx vitest --coverage --coverage.include=src --coverage.reporter=lcov run test/* -c=./vitest.config.unit.ts",
"docs:build": "typedoc --options typedoc.cjs --tsconfig tsconfig.prod.cjs.json",
"examples": "tsx ../../scripts/examples-runner.ts -- client",
"lint": "eslint --config .eslintrc.cjs . --ext .js,.ts",
"lint:fix": "eslint --fix --config .eslintrc.cjs . --ext .js,.ts",
"preinstall": "npm run binWorkaround",
"prepublishOnly": "../../config/cli/prepublish.sh",
"test": "npm run test:unit && npm run test:integration",
"test:cli": "npx vitest run ./test/cli/*.spec.ts",
"test:integration": "npx vitest run ./test/integration/*.spec.ts",
"test:unit": "npx vitest run test/* -c=./vitest.config.unit.ts",
"tsc": "../../config/cli/ts-compile.sh"
},
"dependencies": {
"@ethereumjs/block": "6.0.0-alpha.1",
"@ethereumjs/blockchain": "8.0.0-alpha.1",
"@ethereumjs/common": "5.0.0-alpha.1",
"@ethereumjs/devp2p": "7.0.0-alpha.1",
"@ethereumjs/ethash": "4.0.0-alpha.1",
"@ethereumjs/evm": "4.0.0-alpha.1",
"@ethereumjs/genesis": "0.3.0-alpha.1",
"@ethereumjs/mpt": "7.0.0-alpha.1",
"@ethereumjs/rlp": "6.0.0-alpha.1",
"@ethereumjs/statemanager": "3.0.0-alpha.1",
"@ethereumjs/tx": "6.0.0-alpha.1",
"@ethereumjs/util": "10.0.0-alpha.1",
"@ethereumjs/vm": "9.0.0-alpha.1",
"@js-sdsl/ordered-map": "^4.4.2",
"@multiformats/multiaddr": "^12.2.1",
"@paulmillr/trusted-setups": "^0.1.2",
"@polkadot/wasm-crypto": "^7.3.2",
"@scure/base": "^1.1.7",
"abstract-level": "^1.0.3",
"body-parser": "^1.19.2",
"chalk": "^4.1.2",
"connect": "^3.7.0",
"cors": "^2.8.5",
"debug": "^4.3.3",
"ethereum-cryptography": "^3.0.0",
"eventemitter3": "^5.0.1",
"jayson": "^4.0.0",
"level": "^8.0.0",
"mcl-wasm": "^1.5.0",
"memory-level": "^1.0.0",
"micro-eth-signer": "^0.12.1",
"prom-client": "^15.1.0",
"rustbn-wasm": "^0.4.0",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.5",
"yargs": "^17.7.1"
},
"devDependencies": {
"@types/body-parser": "^1.19.2",
"@types/connect": "^3.4.35",
"@types/cors": "^2.8.17",
"@types/eventsource": "^1.1.15",
"@types/fs-extra": "^11.0.4",
"@types/qs": "^6.9.15",
"@types/ws": "^8.5.10",
"@types/yargs": "^17.0.24",
"eventsource": "^2.0.2",
"isomorphic-ws": "^5.0.0",
"it-pair": "^1.0.0",
"it-pipe": "^1.1.0",
"it-pushable": "^1.4.2",
"testdouble": "^3.16.6",
"testdouble-timers": "^0.1.1",
"ws": "^8.14.2"
},
"engines": {
"node": ">=18"
}
}