forked from ethereumjs/ethereumjs-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 4.06 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
107
108
109
110
111
112
113
114
{
"name": "@ethereumjs/client",
"version": "0.10.0",
"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 (v@pulim.com)",
"main": "dist/src/index.js",
"browser": "dist/bundle.js",
"types": "dist/src/index.d.ts",
"bin": {
"ethereumjs": "dist/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:browser": "../../config/cli/ts-build.sh browser && npm run bundle && rm -rf dist.browser",
"build:common": "../../config/cli/ts-build.sh",
"bundle": "webpack",
"clean": "../../config/cli/clean-package.sh",
"client:start:ts": "tsx bin/cli.ts",
"client:start:js": "npm run build && node dist/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": "c8 --all --reporter=lcov --reporter=text npm run test:unit",
"docs:build": "typedoc --options typedoc.cjs --tsconfig tsconfig.prod.cjs.json",
"examples": "tsx ../../scripts/examples-runner.ts -- client",
"lint": "../../config/cli/lint.sh",
"lint:diff": "../../config/cli/lint-diff.sh",
"lint:fix": "../../config/cli/lint-fix.sh",
"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": "5.1.1",
"@ethereumjs/blockchain": "7.1.0",
"@ethereumjs/common": "4.2.0",
"@ethereumjs/devp2p": "6.1.1",
"@ethereumjs/ethash": "3.0.2",
"@ethereumjs/evm": "2.2.1",
"@ethereumjs/genesis": "0.2.1",
"@ethereumjs/rlp": "5.0.2",
"@ethereumjs/statemanager": "2.2.2",
"@ethereumjs/trie": "6.1.1",
"@ethereumjs/tx": "5.2.1",
"@ethereumjs/util": "9.0.2",
"@ethereumjs/verkle": "^0.0.1",
"@ethereumjs/vm": "7.2.1",
"@polkadot/util": "^12.6.2",
"@polkadot/wasm-crypto": "^7.3.2",
"abstract-level": "^1.0.3",
"body-parser": "^1.19.2",
"kzg-wasm": "^0.2.0",
"chalk": "^4.1.2",
"connect": "^3.7.0",
"cors": "^2.8.5",
"debug": "^4.3.3",
"ethereum-cryptography": "^2.1.3",
"fs-extra": "^11.2.0",
"it-pipe": "^1.1.0",
"jayson": "^4.0.0",
"js-sdsl": "^4.4.0",
"jwt-simple": "^0.5.6",
"level": "^8.0.0",
"memory-level": "^1.0.0",
"multiaddr": "^10.0.1",
"qheap": "^1.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/fs-extra": "^11.0.4",
"@types/jwt-simple": "^0.5.33",
"@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-pushable": "^1.4.2",
"testdouble": "^3.16.6",
"testdouble-timers": "^0.1.1",
"ws": "^8.14.2"
},
"engines": {
"node": ">=18"
}
}