{
  "name": "@tevm/ts-plugin",
  "version": "1.0.0-next.148",
  "private": false,
  "sideEffects": false,
  "description": "A typescript plugin for tevm",
  "keywords": [
    "typescript",
    "plugin",
    "solidity",
    "sol",
    "tevm"
  ],
  "repository": {
    "type": "git",
    "url": "git+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": {
        "types": "./types/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/index.d.ts",
  "bin": {
    "tevm-gen": "./dist/bin/tevm-gen.js"
  },
  "files": [
    "dist",
    "src",
    "types"
  ],
  "dependencies": {
    "@types/minimatch": "^6.0.0",
    "effect": "3.18.1",
    "glob": "^11.0.3",
    "minimatch": "^10.0.3",
    "solc": "0.8.30",
    "solidity-ast": "^0.4.61",
    "@tevm/base-bundler": "^1.0.0-next.148",
    "@tevm/bundler-cache": "^1.0.0-next.148"
  },
  "devDependencies": {
    "typescript": "^5.9.3",
    "@tevm/config": "^1.0.0-next.148",
    "@tevm/contract": "^1.0.0-next.148",
    "@tevm/tsupconfig": "^1.0.0-next.148"
  },
  "peerDependencies": {
    "typescript": ">=5.0.0"
  },
  "scripts": {
    "build": "nx run-many --targets=build:dist,build:types --projects=@tevm/ts-plugin ",
    "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",
    "dev": "TSS_DEBUG_BRK=9559 code ../../examples/forge-foundry",
    "format": "biome format . --write",
    "format:check": "biome format .",
    "lint:deps": "bunx depcheck",
    "// lint:package": "bunx publint --strict && attw --pack",
    "generate:docs": "typedoc",
    "lint": "biome check . --write --unsafe",
    "lint:check": "biome check . --verbose",
    "typecheck": "tsc --noEmit",
    "test": "vitest --coverage",
    "test:coverage": "vitest run --coverage",
    "test:run": "vitest --run"
  }
}