UNPKG

@nomicfoundation/hardhat-viem

Version:
78 lines 2.28 kB
{ "name": "@nomicfoundation/hardhat-viem", "version": "2.0.6", "description": "Hardhat plugin for viem", "homepage": "https://github.com/nomicfoundation/hardhat/tree/main/packages/hardhat-viem", "repository": "github:nomicfoundation/hardhat", "author": "Nomic Foundation", "license": "MIT", "main": "index.js", "types": "index.d.ts", "keywords": [ "ethereum", "smart-contracts", "hardhat", "hardhat-plugin", "viem" ], "files": [ "src/", "internal/", "*.d.ts", "*.d.ts.map", "*.js", "*.js.map", "LICENSE", "README.md" ], "devDependencies": { "@types/chai": "^4.2.0", "@types/chai-as-promised": "^7.1.3", "@types/lodash": "^4.14.123", "@types/lodash.memoize": "^4.1.7", "@types/mocha": ">=9.1.0", "@types/node": "^18.0.0", "@types/sinon": "^9.0.8", "@typescript-eslint/eslint-plugin": "5.61.0", "@typescript-eslint/parser": "5.61.0", "chai": "^4.2.0", "chai-as-promised": "^7.1.1", "eslint": "^8.44.0", "eslint-config-prettier": "8.3.0", "eslint-plugin-import": "2.27.5", "eslint-plugin-mocha": "10.4.1", "eslint-plugin-prettier": "3.4.0", "hardhat": "^2.17.0", "jest-diff": "^29.7.0", "mocha": "^10.0.0", "nyc": "^15.1.0", "prettier": "2.4.1", "rimraf": "^3.0.2", "sinon": "^9.0.0", "ts-node": "^10.8.0", "typescript": "~5.0.0", "viem": "^2.7.6", "@nomicfoundation/eslint-plugin-hardhat-internal-rules": "^1.0.2", "@nomicfoundation/eslint-plugin-slow-imports": "^1.0.0" }, "peerDependencies": { "hardhat": "^2.17.0", "viem": "^2.7.6" }, "dependencies": { "abitype": "^0.9.8", "lodash.memoize": "^4.1.2" }, "scripts": { "lint": "pnpm prettier --check && pnpm eslint", "lint:fix": "pnpm prettier --write && pnpm eslint --fix", "eslint": "eslint 'src/**/*.ts' 'test/**/*.ts'", "prettier": "prettier \"**/*.{js,md,json}\"", "pretest": "cd ../.. && pnpm build", "test": "mocha --recursive \"test/**/*.ts\" -c --exit", "snapshots:update": "ts-node test/update-snapshots.ts", "coverage": "nyc pnpm test -- --reporter min", "build": "tsc --build .", "clean": "rimraf internal *.{d.ts,js}{,.map} build-test tsconfig.tsbuildinfo" } }