{
  "name": "@matterlabs/hardhat-zksync-verify",
  "version": "1.8.0",
  "description": "Hardhat plugin to verify smart contracts for the ZKsync network",
  "repository": "github:matter-labs/hardhat-zksync",
  "homepage": "https://github.com/matter-labs/hardhat-zksync/tree/main/packages/hardhat-zksync-verify",
  "author": "Matter Labs",
  "license": "MIT",
  "main": "dist/src/index.js",
  "types": "dist/src/index.d.ts",
  "keywords": [
    "ethereum",
    "smart-contracts",
    "hardhat",
    "hardhat-plugin",
    "ZKsync"
  ],
  "files": [
    "dist/src/",
    "src/",
    "LICENSE",
    "README.md"
  ],
  "dependencies": {
    "@ethersproject/abi": "^5.7.0",
    "@ethersproject/address": "5.7.0",
    "@nomicfoundation/hardhat-verify": "^2.0.8",
    "axios": "^1.7.2",
    "semver": "^7.6.2",
    "cbor": "^9.0.2",
    "chai": "^4.3.4",
    "chalk": "^4.1.2",
    "debug": "^4.3.5",
    "sinon": "^18.0.0",
    "sinon-chai": "^3.7.0",
    "@matterlabs/hardhat-zksync-solc": "^1.3.0",
    "@matterlabs/hardhat-zksync-telemetry": "^1.1.0"
  },
  "devDependencies": {
    "@nomicfoundation/hardhat-verify": "^2.0.8",
    "@types/chai": "^4.3.16",
    "@types/debug": "^4.1.12",
    "@types/mocha": "^10.0.6",
    "@types/node": "^18.11.17",
    "@types/sinon": "^17.0.3",
    "@typescript-eslint/eslint-plugin": "^7.12.0",
    "@typescript-eslint/parser": "^7.12.0",
    "c8": "^9.1.0",
    "eslint": "^8.56.0",
    "eslint-config-prettier": "^9.1.0",
    "eslint-plugin-import": "^2.29.1",
    "eslint-plugin-no-only-tests": "^3.1.0",
    "eslint-plugin-prettier": "^5.0.1",
    "mocha": "^10.4.0",
    "prettier": "^3.3.0",
    "rimraf": "^5.0.7",
    "hardhat": "^2.22.5",
    "ts-node": "^10.9.2",
    "typescript": "^5.3.0"
  },
  "peerDependencies": {
    "@nomicfoundation/hardhat-verify": "^2.0.8",
    "hardhat": "^2.22.5"
  },
  "prettier": {
    "tabWidth": 4,
    "printWidth": 120,
    "parser": "typescript",
    "singleQuote": true,
    "bracketSpacing": true
  },
  "scripts": {
    "lint": "pnpm eslint",
    "prettier:check": "pnpm prettier --check",
    "lint:fix": "pnpm eslint --fix",
    "fmt": "pnpm prettier --write",
    "eslint": "eslint 'src/**/*.ts' 'test/**/*.ts'",
    "prettier": "prettier 'src/**/*.ts' 'test/**/*.ts'",
    "test": "c8 mocha --recursive \"test/tests/**/*.ts\" --exit",
    "build": "tsc --build .",
    "clean": "rimraf dist"
  }
}