{
  "name": "@tevm/api",
  "version": "1.0.0-next.22",
  "private": false,
  "description": "A typesafe library for writing forge scripts in typescript",
  "keywords": [
    "solidity",
    "sol",
    "typescript",
    "web3",
    "blockchain"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/evmts/tevm-monorepo.git",
    "directory": "vm/api"
  },
  "license": "MIT",
  "contributors": [
    "Will Cory <willcory10@gmail.com>"
  ],
  "type": "module",
  "exports": {
    "./package.json": "./package.json",
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    }
  },
  "main": "dist/index.cjs",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist",
    "src",
    "!src/**/*.spec.ts"
  ],
  "devDependencies": {
    "abitype": "^0.10.3",
    "viem": "^2.0.0",
    "@tevm/tsconfig": "^1.0.0-next.5",
    "@tevm/tsupconfig": "^1.0.0-next.5"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "all": "pnpm i  && bun run build && bun lint && bun format && bun test:run && bun generate:docs && bun lint:deps && bun lint:package",
    "build": "nx run-many --targets=build:dist,build:types --projects=@tevm/api",
    "build:dist": "tsup",
    "build:types": "tsup --dts-only",
    "clean": "rm -rf node_modules && rm -rf artifacts && rm -rf dist && rm -rf cache",
    "format": "rome format . --write",
    "format:check": "rome format .",
    "lint:deps": "bunx depcheck",
    "lint:package": "bunx publint --strict && attw --pack",
    "generate:docs": "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"
  }
}