UNPKG

@ethereumjs/evm

Version:
88 lines (87 loc) 3.52 kB
{ "name": "@ethereumjs/evm", "version": "10.1.2", "description": "JavaScript Ethereum Virtual Machine (EVM) implementation", "keywords": ["ethereum", "EVM", "JavaScript", "TypeScript"], "homepage": "https://github.com/ethereumjs/ethereumjs-monorepo/tree/master/packages/evm#readme", "bugs": { "url": "https://github.com/ethereumjs/ethereumjs-monorepo/issues?q=is%3Aissue+label%3A%22package%3A+evm%22" }, "repository": { "type": "git", "url": "https://github.com/ethereumjs/ethereumjs-monorepo.git" }, "license": "MPL-2.0", "author": "EthereumJS Team", "contributors": ["Alex Beregszaszi <alex@rtfs.hu>"], "type": "module", "sideEffects": false, "main": "dist/cjs/index.js", "module": "dist/esm/index.js", "exports": { ".": { "import": { "typescript": "./src/index.ts", "default": "./dist/esm/index.js" }, "require": "./dist/cjs/index.js" } }, "files": ["dist", "src"], "scripts": { "biome": "npx @biomejs/biome check", "biome:fix": "npx @biomejs/biome check --write", "build": "../../config/cli/ts-build.sh", "clean": "../../config/cli/clean-package.sh", "coverage": "DEBUG=ethjs npx vitest run -c ../../config/vitest.config.coverage.mts", "coverage:istanbul": "DEBUG=ethjs npx vitest run -c ../../config/vitest.config.coverage.istanbul.mts", "docs:build": "typedoc --options typedoc.mjs", "examples": "tsx ../../scripts/examples-runner.ts -- evm && tsx ../../scripts/examples-runner.ts -- evm precompiles && tsx ../../scripts/examples-runner.ts -- evm opcodes", "examples:build": "npx embedme README.md", "formatTest": "node ./scripts/formatTest", "lint": "npm run biome && eslint --config ./eslint.config.mjs .", "lint:fix": "npm run biome:fix && eslint --fix --config ./eslint.config.mjs .", "prepublishOnly": "../../config/cli/prepublish.sh", "sc": "npm run spellcheck", "spellcheck": "npm run spellcheck:ts && npm run spellcheck:md", "spellcheck:ts": "npx cspell --gitignore -c ../../config/cspell-ts.json \"./**/*.ts\" --cache --show-suggestions --show-context", "spellcheck:md": "npx cspell --gitignore -c ../../config/cspell-md.json \"**.md\" --cache --show-suggestions --show-context", "profiling": "0x ./benchmarks/run.js profiling", "test": "npm run test:node && npm run test:browser", "test:browser": "npx vitest run --config=./vitest.config.browser.mts", "test:node": "npx vitest run -c ../../config/vitest.config.mts", "tsc": "../../config/cli/ts-compile.sh", "visualize:bundle": "npx vite build --config=./vite.config.bundler.ts --emptyOutDir=false --outDir ." }, "dependencies": { "@ethereumjs/binarytree": "^10.1.2", "@ethereumjs/common": "^10.1.2", "@ethereumjs/statemanager": "^10.1.2", "@ethereumjs/util": "^10.1.2", "@noble/curves": "^2.0.1", "@noble/hashes": "^2.0.1", "debug": "^4.4.0", "eventemitter3": "^5.0.1" }, "devDependencies": { "@paulmillr/trusted-setups": "^0.2.0", "@types/benchmark": "^2.1.5", "@types/debug": "^4.1.12", "@types/minimist": "^1.2.5", "@types/node-dir": "^0.0.37", "benchmark": "^2.1.4", "level": "^9.0.0", "mcl-wasm": "^1.8.0", "memory-level": "^3.0.0", "micro-eth-signer": "^0.15.0", "minimist": "^1.2.8", "node-dir": "^0.1.17", "rollup-plugin-visualizer": "^5.14.0", "rustbn-wasm": "^0.4.0", "solc": "^0.8.28", "split": "^1.0.1" }, "engines": { "node": ">=20" } }