{
  "name": "@tevm/base-bundler",
  "version": "1.0.0-next.140",
  "private": false,
  "description": "Internal bundler for Tevm",
  "keywords": [
    "tevm",
    "solidity",
    "typescript",
    "web3",
    "blockchain"
  ],
  "homepage": "https://tevm.sh",
  "repository": {
    "type": "git",
    "url": "https://github.com/evmts/tevm-monorepo.git",
    "directory": "bundler/base-bundler"
  },
  "license": "MIT",
  "author": "roninjin10",
  "contributors": [
    "Will Cory <willcory10@gmail.com>"
  ],
  "sideEffects": false,
  "type": "module",
  "exports": {
    "./package.json": "./package.json",
    ".": {
      "import": {
        "types": "./types/src/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": "types/src/index.d.ts",
  "files": [
    "dist",
    "src",
    "types"
  ],
  "dependencies": {
    "@types/node": "^22.13.5",
    "effect": "3.13.2",
    "solc": "0.8.28",
    "solidity-ast": "^0.4.59",
    "@tevm/bundler-cache": "^1.0.0-next.140",
    "@tevm/compiler": "^1.0.0-next.140",
    "@tevm/config": "^1.0.0-next.131",
    "@tevm/runtime": "^1.0.0-next.131",
    "@tevm/solc": "^1.0.0-next.140",
    "@tevm/tsconfig": "^1.0.0-next.131",
    "@tevm/tsupconfig": "^1.0.0-next.131"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "all": "bun run build && bun run format && bun run lint && bun run test:coverage && bun run generate:docs && bun lint:deps && bun lint:package",
    "build": "nx run-many --targets=build:dist,build:types --projects=@tevm/base-bundler ",
    "build:dist": "tsup",
    "build:types": "tsup --dts-only && tsc --emitDeclarationOnly --declaration",
    "clean": "rm -rf node_modules && rm -rf artifacts && rm -rf dist && rm -rf cache",
    "format": "biome format . --write",
    "format:check": "biome format .",
    "generate:docs": "typedoc --plugin typedoc-plugin-markdown",
    "lint": "biome check . --write --unsafe",
    "lint:check": "biome check . --verbose",
    "lint:deps": "bunx depcheck",
    "lint:package": "bunx publint --strict && attw --pack",
    "test": "vitest --coverage",
    "test:coverage": "vitest run --coverage",
    "test:run": "vitest run",
    "test:ui": "vitest --ui"
  }
}