{
	"name": "@evmts/vm",
	"version": "1.0.0-next.11",
	"private": false,
	"description": "A typesafe library for writing forge scripts in typescript",
	"keywords": [
		"solidity",
		"forge",
		"foundry",
		"sol",
		"typescript",
		"web3",
		"blockchain"
	],
	"repository": {
		"type": "git",
		"url": "https://github.com/evmts/evmts-monorepo.git",
		"directory": "prototype/core"
	},
	"license": "MIT",
	"contributors": [
		"Will Cory <willcory10@gmail.com>"
	],
	"type": "module",
	"exports": {
		"./package.json": "./package.json",
		".": {
			"import": "./dist/index.js",
			"default": "./dist/index.js",
			"types": "./types/index.d.ts"
		}
	},
	"main": "dist/index.js",
	"module": "dist/index.js",
	"types": "types/index.d.ts",
	"files": [
		"dist",
		"types",
		"src"
	],
	"scripts": {
		"all": "pnpm i  && bun run build && bun lint && bun format && bun test:run && bun generate:docs",
		"build": "nx run-many --targets=build:dist,build:types --projects=@evmts/vm",
		"build:dist": "bun run tsup",
		"build:types": "bun run tsc --emitDeclarationOnly --declaration --declarationMap",
		"clean": "rm -rf node_modules && rm -rf artifacts && rm -rf dist && rm -rf cache",
		"format": "rome format . --write",
		"format:check": "rome format .",
		"generate:docs": "bun run typedoc",
		"lint": "rome check . --apply-unsafe",
		"lint:check": "rome check . --verbose",
		"package:up": "pnpm up --latest",
		"test": "bun test --watch",
		"test:coverage": "bun test --coverage",
		"test:run": "bun test",
		"typecheck": "tsc --noEmit"
	},
	"dependencies": {
		"@ethereumjs/block": "^5.0.1",
		"@ethereumjs/common": "^4.1.0",
		"@ethereumjs/evm": "^2.1.0",
		"@ethereumjs/statemanager": "^2.1.0",
		"@ethereumjs/trie": "^6.0.1",
		"@ethereumjs/tx": "^5.1.0",
		"@ethereumjs/util": "^9.0.1",
		"@ethereumjs/vm": "^7.1.0",
		"abitype": "^0.8.11",
		"debug": "^4.3.4",
		"ethereum-cryptography": "^2.1.2",
		"ethers": "^6.8.0",
		"rome": "^12.1.3",
		"viem": "^1.2.10"
	},
	"devDependencies": {
		"@evmts/tsconfig": "workspace:^",
		"@types/debug": "^4.1.12",
		"@vitest/ui": "^0.32.2",
		"tsup": "^7.0.0",
		"typedoc": "^0.25.3",
		"typedoc-plugin-markdown": "^3.16.0",
		"typescript": "^5.1.3",
		"vitest": "^0.34.6",
		"zod": "^3.21.4"
	},
	"publishConfig": {
		"access": "public"
	}
}
