-
-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 7.11 KB
/
Copy pathpackage.json
File metadata and controls
112 lines (112 loc) · 7.11 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
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
{
"name": "@tevm/root",
"version": "0.0.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/evmts/tevm.git"
},
"license": "MIT",
"contributors": [
"Will Cory <willcory10@gmail.com>"
],
"type": "commonjs",
"scripts": {
"all": "nx run-many --targets=generate:docs,build:types,typecheck,test:coverage,build:dist,dev:run,build:app,build:rust,lint:check,lint:deps,lint:package",
"all:clean": "bun clean && bun allz",
"allz": "pnpm i && pnpm concurrently 'bun lint' 'bun sort-package-json' && bun all && pnpm test:conformance:all && pnpm test:hive:smoke",
"build": "nx run-many --targets=build:dist,build:app,build:types",
"build:app": "nx run-many --target=build:app",
"build:dist": "nx run-many --target=build:dist",
"build:rust:app": "nx run-many --target=build --projects=my_rust_node_lib --configuration=production",
"build:rust:lib": "nx run-many --target=build --projects=my_rust_node_lib",
"build:types": "nx run-many --targets=build:types,typecheck",
"clean": "nx reset && nx run-many --target=clean && rm -rf node_modules && rm -rf .nx",
"e2e": "nx e2e e2e",
"find-missing-jsdoc": "node scripts/jsdoc-helper/find-missing-jsdoc.js",
"format:check": "biome format .",
"generate:docs": "nx run-many --target=generate:docs",
"jsdoc:add": "node scripts/jsdoc-helper/add-jsdoc.js",
"jsdoc:batch": "node scripts/jsdoc-helper/batch-add-jsdoc.js",
"lint": "biome check --write --unsafe biome.json package.json *.md *.ts && biome format --write biome.json package.json *.md *.ts && nx run-many --target=lint && nx run-many --target=format",
"lint:check": "nx run-many --target=lint:check",
"lint:deps": "bunx depcheck && nx run-many --target=lint:deps",
"lint:package": "nx run-many --target=lint:package",
"release:check": "changeset status --verbose --since=origin/main",
"release:publish": "pnpm install && nx run-many --target=build:app,build:dist,build:types --skip-nx-cache && cd bundler-packages/resolutions-rs && bun run build:release && cd ../../ && node scripts/prepare-changeset-publish.mjs && TEVM_REAL_PNPM=\"$(command -v pnpm)\" PATH=\"$PWD/scripts/pnpm-publish-wrapper:$PATH\" changeset publish",
"release:publish:jsr": "cd tevm && pnpm publish:jsr",
"release:publish:jsr:dry-run": "cd tevm && pnpm publish:jsr:dry",
"release:version": "changeset version && pnpm install --lockfile-only",
"sort-package-json": "sort-package-json package.json apps/*/package.json bundler-packages/*/package.json configs/*/package.json examples/*/package.json experimental/*/package.json extensions/*/package.json packages/*/package.json tevm/package.json",
"sort-package-json:check": "sort-package-json package.json docs/package.json configs/*/package.json examples/*/package.json experimental/*/package.json extensions/*/package.json packages/*/package.json && git diff --exit-code tevm/package.json",
"test": "bun test:run",
"test:coverage": "nx run-many --target=test:coverage",
"test:eip3155": "node --test test/eip3155/trace-tools.test.mjs",
"test:eip3155:compare": "node test/eip3155/trace-tools.mjs compare",
"test:eip3155:convert": "node test/eip3155/trace-tools.mjs convert",
"test:run": "nx run-many --target=test:run",
"up": "bun x npm-check-updates -ui -ws",
"test:conformance:gst": "node test/ethereum-state-tests/run-general-state-tests.mjs --group=boundary --hardfork=frontier --limit=50 --out=artifacts/general-state-tests/boundary-frontier.json",
"test:conformance:gst:all": "node test/ethereum-state-tests/run-general-state-tests.mjs --out=artifacts/general-state-tests/all.json",
"test:conformance:execspec": "node test/execution-spec-tests/run-execution-spec-tests.mjs --group=eip --hardfork=shanghai --limit=50 --out=artifacts/execution-spec-tests/eip-shanghai.json",
"test:conformance:execspec:all": "node test/execution-spec-tests/run-execution-spec-tests.mjs --out=artifacts/execution-spec-tests/all.json",
"test:conformance:gst:isolate": "node test/ethereum-state-tests/run-general-state-tests.mjs --isolate=gst-frontier-upstream-state-root --trace-out=artifacts/general-state-tests/isolate-trace.json --out=artifacts/general-state-tests/isolate.json",
"test:conformance:gst:trace:compare": "node test/ethereum-state-tests/run-general-state-tests.mjs --group=eip --trace-out=artifacts/general-state-tests/actual-trace.json --trace-compare=true --trace-reference=artifacts/general-state-tests/reference-trace.json --trace-diff-out=artifacts/eip3155/trace-diff.json --out=artifacts/general-state-tests/trace-compare.json",
"test:conformance:execspec:isolate": "node test/execution-spec-tests/run-execution-spec-tests.mjs --isolate=est-shanghai-eip4895-header-validation --trace-out=artifacts/execution-spec-tests/isolate-trace.json --out=artifacts/execution-spec-tests/isolate.json",
"test:conformance:targets": "node test/conformance-utils/generate-target-groups.mjs --out=artifacts/conformance-target-groups/frontier-osaka.json",
"test:conformance:fast": "pnpm test:conformance:gst && pnpm test:conformance:execspec",
"test:conformance:all": "pnpm test:conformance:gst:all && pnpm test:conformance:execspec:all",
"test:hive": "HIVE_SUITE=rpc-compat bash test/hive/run-hive.sh",
"test:hive:smoke": "HIVE_SUITE=smoke bash test/hive/run-hive.sh",
"test:parity:fast": "bash scripts/parity/run-suite.sh fast",
"test:parity:full": "bash scripts/parity/run-suite.sh full",
"test:parity:rpc": "PARITY_ARTIFACT_DIR=artifacts/parity pnpm test:parity:fast",
"test:parity:smithers:fast": "PARITY_ARTIFACT_DIR=artifacts/parity pnpm test:parity:fast",
"test:parity:smithers:full": "PARITY_ARTIFACT_DIR=artifacts/parity pnpm test:parity:full",
"test:hive:rpc-compat": "HIVE_SUITE=rpc-compat bash test/hive/run-hive.sh",
"test:hive:smithers:smoke": "HIVE_ARTIFACT_DIR=artifacts/hive HIVE_SUITE=smoke bash test/hive/run-hive.sh",
"test:hive:smithers:rpc-compat": "HIVE_ARTIFACT_DIR=artifacts/hive HIVE_SUITE=rpc-compat bash test/hive/run-hive.sh"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@biomejs/biome": "^2.4.15",
"@changesets/changelog-github": "^0.7.0",
"@changesets/cli": "^2.31.0",
"@evmts/zevm": "workspace:^",
"@tevm/block": "workspace:*",
"@tevm/blockchain": "workspace:*",
"@tevm/common": "workspace:*",
"@tevm/evm": "workspace:*",
"@tevm/state": "workspace:*",
"@tevm/utils": "workspace:*",
"@tevm/vm": "workspace:*",
"@vitest/coverage-v8": "^4.1.6",
"@vitest/ui": "^4.1.6",
"bun-types": "^1.3.14",
"concurrently": "^9.2.1",
"depcheck": "^1.4.7",
"dotenv": "^17.4.2",
"gitmoji-cli": "^9.7.0",
"nx": "22.7.2",
"publint": "^0.3.21",
"sort-package-json": "^3.6.1",
"starlight-typedoc": "^0.22.0",
"tsup": "^8.5.1",
"typedoc": "^0.28.19",
"typedoc-plugin-markdown": "4.11.0",
"typescript": "^6.0.3",
"viem": "^2.49.3",
"vite": "^8.0.13",
"vitest": "^4.1.6"
},
"packageManager": "pnpm@10.33.4+sha512.HGezs1my1AgRm6HtKJ80uPw8aHNBK+xv0mT73IJInlEPy+y5zp0i2ufzt2Jp2EQQRgFL3KU7mXnNelYa1jG4AA==",
"engines": {
"_comment": "Tevm CI and parity suites are validated on Node 24 via .nvmrc.",
"node": "^24.0.0"
},
"pnpm": {
"patchedDependencies": {
"@arethetypeswrong/core@0.18.2": "patches/@arethetypeswrong__core@0.18.2.patch"
}
}
}