{
  "name": "hardhat-deploy",
  "version": "2.0.24",
  "description": "Hardhat plugin for replicable smart contract deployments and easy testing across multiple EVM chains, with support for proxies, diamonds, named accounts, and deployment fixtures",
  "keywords": [
    "hardhat",
    "ethereum",
    "solidity",
    "deployment",
    "test",
    "cli"
  ],
  "author": "Ronan Sandford",
  "license": "MIT",
  "homepage": "https://github.com/wighawag/hardhat-deploy#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/wighawag/rocketh.git",
    "directory": "packages/hardhat-deploy"
  },
  "bugs": {
    "url": "https://github.com/wighawag/rocketh/issues"
  },
  "publishConfig": {
    "access": "public"
  },
  "type": "module",
  "main": "dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      },
      "require": "./dist/v1-entry.cjs"
    },
    "./helpers": {
      "import": {
        "types": "./dist/helpers.d.ts",
        "default": "./dist/helpers.js"
      }
    },
    "./v1/solc_0_6/*": "./v1/solc_0_6/*",
    "./v1/solc_0_7/*": "./v1/solc_0_7/*",
    "./v1/solc_0_8/*": "./v1/solc_0_8/*"
  },
  "files": [
    "dist",
    "src",
    "bin",
    "templates",
    "v1"
  ],
  "bin": {
    "hardhat-deploy": "./dist/cli.js"
  },
  "engines": {
    "node": ">=22.0.0"
  },
  "devDependencies": {
    "@types/node": "^26.2.0",
    "as-soon": "^0.1.6",
    "hardhat": "^3.12.0",
    "rimraf": "^6.1.3",
    "typescript": "^6.0.3",
    "vitest": "^4.1.10",
    "@rocketh/node": "0.19.20",
    "rocketh": "0.19.18"
  },
  "peerDependencies": {
    "hardhat": "^3.6.0",
    "@rocketh/node": "^0.19.20",
    "rocketh": "^0.19.18"
  },
  "dependencies": {
    "@nomicfoundation/hardhat-zod-utils": "^3.0.4",
    "commander": "^15.0.0",
    "named-logs": "^0.4.1",
    "named-logs-console": "^0.5.1",
    "zod": "^3.25.76"
  },
  "scripts": {
    "build": "tsc --project tsconfig.build.json && cp src/v1-entry.cjs dist/",
    "dev": "as-soon -w src pnpm build",
    "test": "vitest"
  }
}