{
  "name": "@rocketh/proxy",
  "version": "0.19.25",
  "description": "Deploy upgradeable EVM smart contracts behind ERC1967, UUPS, Transparent or ERC173 proxies, for rocketh and hardhat-deploy.",
  "keywords": [
    "rocketh",
    "ethereum",
    "evm",
    "solidity",
    "smart-contracts",
    "deployment",
    "hardhat-deploy",
    "proxy",
    "upgradeable",
    "uups",
    "erc1967",
    "transparent-proxy",
    "erc173"
  ],
  "author": "Ronan Sandford",
  "license": "MIT",
  "homepage": "https://github.com/wighawag/rocketh/blob/main/packages/rocketh-proxy/README.md",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/wighawag/rocketh.git",
    "directory": "packages/rocketh-proxy"
  },
  "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"
      }
    },
    "./artifacts/*": "./artifacts/*",
    "./solc_0_6/*": "./solc_0_6/*",
    "./solc_0_7/*": "./solc_0_7/*",
    "./solc_0_8/*": "./solc_0_8/*"
  },
  "files": [
    "dist",
    "src",
    "solc_0_6",
    "solc_0_7",
    "solc_0_8",
    "artifacts",
    "hardhat-deploy-v1"
  ],
  "dependencies": {
    "abitype": "^1.3.0",
    "eip-1193": "^0.6.5",
    "named-logs": "^0.4.1",
    "viem": "^2.55.13",
    "@rocketh/core": "0.19.13",
    "@rocketh/read-execute": "0.19.13",
    "@rocketh/deploy": "0.19.18"
  },
  "devDependencies": {
    "@types/node": "^26.2.0",
    "as-soon": "^0.1.6",
    "rimraf": "^6.1.3",
    "tsx": "^4.23.12",
    "typescript": "^6.0.3",
    "vitest": "^4.1.10",
    "@rocketh/test-utils": "0.2.17"
  },
  "scripts": {
    "build": "tsc --project tsconfig.build.json && tsx ../../scripts/ts-to-json --dir ./src/hardhat-deploy-v1-artifacts --output-dir ./artifacts",
    "dev": "as-soon -w src pnpm build",
    "test": "vitest",
    "generate:artifacts": "tsx scripts/generate-artifacts.ts",
    "verify:artifacts": "tsx scripts/generate-artifacts.ts --check"
  }
}