{
  "name": "@evmts/ts-plugin",
  "version": "0.11.2",
  "private": false,
  "description": "A typescript plugin for evmts",
  "keywords": [
    "typescript",
    "plugin",
    "solidity",
    "sol",
    "evmts"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/evmts/evmts-monorepo.git",
    "directory": "lsp/ts-plugin"
  },
  "license": "MIT",
  "contributors": [
    "Will Cory <willcory10@gmail.com>"
  ],
  "type": "module",
  "main": "dist/index.cjs",
  "module": "dist/index.js",
  "types": "types/index.d.ts",
  "bin": {
    "evmts-gen": "./dist/bin/evmts-gen.js"
  },
  "files": [
    "dist",
    "types",
    "src"
  ],
  "dependencies": {
    "esbuild": "0.19.2",
    "glob": "^10.3.3",
    "solidity-ast": "^0.4.52",
    "zod": "^3.22.2",
    "@evmts/bundler": "^0.11.2"
  },
  "devDependencies": {
    "@vitest/coverage-v8": "^0.34.3",
    "rome": "^12.1.3",
    "tsup": "^7.2.0",
    "typescript": "^5.2.2",
    "vitest": "^0.34.3",
    "@evmts/config": "^0.10.0"
  },
  "peerDependencies": {
    "solc": "*",
    "typescript": ">=5.0.0"
  },
  "scripts": {
    "build": "nx run-many --targets=build:dist,build:types --projects=@evmts/ts-plugin ",
    "build:dist": "tsup",
    "build:types": "tsc --emitDeclarationOnly",
    "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 .",
    "lint": "rome check . --apply-unsafe",
    "lint:check": "rome check . --verbose",
    "package:up": "pnpm up --latest",
    "pretest": "forge build",
    "test": "vitest --coverage",
    "test:coverage": "vitest run --coverage",
    "test:run": "vitest --run"
  }
}