{
	"name": "@tevm/server",
	"version": "0.0.1",
	"private": false,
	"description": "A TRPC server serving JSON RPC for Tevm vm",
	"keywords": ["solidity", "sol", "typescript", "trpc", "blockchain"],
	"repository": {
		"type": "git",
		"url": "https://github.com/evmts/tevm-monorepo.git",
		"directory": "vm/server"
	},
	"license": "MIT",
	"contributors": ["Will Cory <willcory10@gmail.com>"],
	"type": "module",
	"exports": {
		"./package.json": "./package.json",
		".": {
			"import": "./dist/index.js",
			"default": "./dist/index.cjs",
			"types": "./types/index.d.ts"
		}
	},
	"main": "dist/index.cjs",
	"module": "dist/index.js",
	"types": "types/index.d.ts",
	"files": ["dist", "types", "src", "!src/**/*.spec.ts"],
	"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=@tevm/vm",
		"build:dist": "bun run tsup",
		"build:types": "bun --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": "vitest",
		"test:coverage": "vitest --coverage",
		"test:run": "vitest run",
		"typecheck": "tsc --noEmit"
	},
	"dependencies": {
		"@tevm/vm": "workspace:^",
		"@trpc/client": "^10.44.1",
		"@trpc/server": "^10.44.1",
		"superjson": "^2.2.1",
		"trpc-playground": "^1.0.4"
	},
	"devDependencies": {
		"@tevm/tsconfig": "workspace:^",
		"@vitest/coverage-v8": "^0.34.6",
		"abitype": "^0.8.11",
		"bun-types": "^1.0.7",
		"rome": "^12.1.3",
		"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"
	}
}
