UNPKG

@nomicfoundation/hardhat-verify

Version:
74 lines 2.59 kB
{ "name": "@nomicfoundation/hardhat-verify", "version": "3.0.18", "description": "Hardhat plugin for verifying contracts", "homepage": "https://github.com/NomicFoundation/hardhat/tree/main/packages/hardhat-verify", "repository": { "type": "git", "url": "https://github.com/NomicFoundation/hardhat", "directory": "packages/hardhat-verify" }, "author": "Nomic Foundation", "license": "MIT", "type": "module", "types": "dist/src/index.d.ts", "exports": { ".": "./dist/src/index.js", "./verify": "./dist/src/verify.js", "./types": "./dist/src/types.js", "./package.json": "./package.json" }, "keywords": [ "ethereum", "smart-contracts", "hardhat", "verify", "etherscan", "blockscout", "sourcify" ], "files": [ "dist/src/", "src/", "CHANGELOG.md", "LICENSE", "README.md" ], "devDependencies": { "@nomicfoundation/hardhat-node-test-reporter": "^3.0.7", "@types/node": "^22.0.0", "c8": "^9.1.0", "eslint": "9.25.1", "expect-type": "^1.2.1", "prettier": "3.2.5", "rimraf": "^5.0.5", "tsx": "^4.19.3", "typescript": "~6.0.3", "hardhat": "^3.4.0", "@nomicfoundation/hardhat-test-utils": "^2.0.3" }, "dependencies": { "@ethersproject/abi": "^5.8.0", "@nomicfoundation/hardhat-errors": "^3.0.13", "@nomicfoundation/hardhat-utils": "^4.1.2", "@nomicfoundation/hardhat-zod-utils": "^3.0.5", "cbor2": "^1.9.0", "zod": "^3.23.8" }, "peerDependencies": { "hardhat": "^3.4.0" }, "scripts": { "lint": "pnpm eslint && pnpm prettier --check", "lint:fix": "pnpm eslint --fix && pnpm prettier --write", "eslint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"", "prettier": "prettier \"**/*.{ts,js,md,json}\"", "test": "node --import tsx/esm --test --test-reporter=@nomicfoundation/hardhat-node-test-reporter \"test/*.ts\" \"test/!(fixture-projects|helpers)/**/*.ts\"", "test:only": "node --import tsx/esm --test --test-only --test-reporter=@nomicfoundation/hardhat-node-test-reporter \"test/*.ts\" \"test/!(fixture-projects|helpers)/**/*.ts\"", "test:coverage": "c8 --reporter html --reporter text --all --exclude test --exclude \"src/**/{types,type-extensions}.ts\" --src src node --import tsx/esm --test --test-reporter=@nomicfoundation/hardhat-node-test-reporter \"test/*.ts\" \"test/!(fixture-projects|helpers)/**/*.ts\"", "pretest": "pnpm build", "pretest:only": "pnpm build", "build": "tsc --build .", "clean": "rimraf dist ./test/fixture-projects/*-tmp-*-*-*-*-*" } }