{
	"name": "@tevm/ts-plugin",
	"version": "1.0.0-next.18",
	"private": false,
	"description": "A typescript plugin for tevm",
	"keywords": ["typescript", "plugin", "solidity", "sol", "tevm"],
	"repository": {
		"type": "git",
		"url": "https://github.com/evmts/tevm-monorepo.git",
		"directory": "lsp/ts-plugin"
	},
	"license": "MIT",
	"contributors": ["Will Cory <willcory10@gmail.com>"],
	"type": "module",
	"exports": {
		"./package.json": "./package.json",
		".": {
			"import": "./dist/index.js",
			"require": "./dist/index.cjs",
			"types": "./types/index.d.ts",
			"default": "./dist/index.cjs"
		}
	},
	"main": "dist/index.cjs",
	"module": "dist/index.js",
	"types": "types/index.d.ts",
	"bin": {
		"tevm-gen": "./dist/bin/tevm-gen.js"
	},
	"files": ["dist", "types", "src"],
	"scripts": {
		"build": "nx run-many --targets=build:dist,build:types --projects=@tevm/ts-plugin ",
		"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",
		"dev": "TSS_DEBUG_BRK=9559 code ../../examples/forge-foundry",
		"format": "rome format . --write",
		"format:check": "rome format .",
		"generate:docs": "bun run typedoc",
		"lint": "rome check . --apply-unsafe",
		"lint:check": "rome check . --verbose",
		"test": "vitest --coverage",
		"test:coverage": "vitest run --coverage",
		"test:run": "vitest --run"
	},
	"dependencies": {
		"@tevm/base": "workspace:^",
		"effect": "2.0.0-next.54",
		"esbuild": "0.19.5",
		"glob": "^10.3.10",
		"solc": "0.8.23-fixed",
		"solidity-ast": "^0.4.52",
		"zod": "^3.22.4"
	},
	"devDependencies": {
		"@tevm/config": "workspace:^",
		"@openzeppelin/contracts": "^5.0.0",
		"@vitest/coverage-v8": "^0.34.6",
		"rome": "^12.1.3",
		"tsup": "^7.2.0",
		"typedoc": "^0.25.3",
		"typedoc-plugin-markdown": "^3.16.0",
		"typescript": "^5.2.2",
		"vitest": "^0.34.6"
	},
	"peerDependencies": {
		"typescript": ">=5.0.0"
	}
}
