@nomicfoundation/hardhat-ignition-viem
Version:
The Viem extension to Hardhat Ignition. Hardhat Ignition is a declarative system for deploying smart contracts on Ethereum. It enables you to define smart contract instances you want to deploy, and any operation you want to run on them. By taking over the
75 lines • 3.1 kB
JSON
{
"name": "@nomicfoundation/hardhat-ignition-viem",
"version": "0.15.10",
"license": "MIT",
"author": "Nomic Foundation",
"homepage": "https://hardhat.org",
"description": "The Viem extension to Hardhat Ignition. Hardhat Ignition is a declarative system for deploying smart contracts on Ethereum. It enables you to define smart contract instances you want to deploy, and any operation you want to run on them. By taking over the deployment and execution, Hardhat Ignition lets you focus on your project instead of getting caught up in the deployment details.",
"repository": "github:NomicFoundation/hardhat-ignition",
"keywords": [
"ethereum",
"smart-contracts",
"hardhat",
"blockchain",
"dapps",
"tooling",
"solidity",
"deployment",
"viem"
],
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "1.0.2",
"@nomicfoundation/hardhat-viem": "^2.0.0",
"@types/chai": "^4.2.22",
"@types/chai-as-promised": "^7.1.4",
"@types/mocha": "9.1.1",
"@types/node": "^18.0.0",
"@types/sinon": "^10.0.13",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/experimental-utils": "^5.62.0",
"@typescript-eslint/parser": "^5.57.1",
"chai": "^4.3.4",
"chai-as-promised": "7.1.1",
"eslint": "^8.38.0",
"eslint-config-prettier": "8.3.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-mocha": "^9.0.0",
"eslint-plugin-no-only-tests": "3.1.0",
"eslint-plugin-prettier": "4.0.0",
"hardhat": "^2.18.0",
"mocha": "^9.1.3",
"nyc": "15.1.0",
"prettier": "2.8.8",
"rimraf": "3.0.2",
"sinon": "^14.0.0",
"ts-node": "10.9.1",
"typescript": "^5.0.2",
"viem": "^2.7.6",
"@nomicfoundation/hardhat-ignition": "^0.15.10",
"@nomicfoundation/ignition-core": "^0.15.10",
"@nomicfoundation/eslint-plugin-hardhat-internal-rules": "^1.0.2"
},
"peerDependencies": {
"@nomicfoundation/hardhat-viem": "^2.0.0",
"hardhat": "^2.18.0",
"viem": "^2.7.6",
"@nomicfoundation/hardhat-ignition": "^0.15.10",
"@nomicfoundation/ignition-core": "^0.15.10"
},
"scripts": {
"prebuild": "(tsc --build || true) && ts-node --project tsconfig.json ./scripts/compile-test-fixture-project.ts create2 && ts-node --project tsconfig.json ./scripts/compile-test-fixture-project.ts minimal",
"build": "tsc --build",
"lint": "pnpm prettier --check && pnpm eslint",
"lint:fix": "pnpm prettier --write && pnpm eslint --fix",
"eslint": "eslint \"src/**/*.{ts,tsx}\" \"test/**/*.{ts,tsx}\"",
"prettier": "prettier \"**/*.{js,ts,md,json}\"",
"test": "mocha --recursive \"test/**/*.ts\"",
"test:debug": "DEBUG='hardhat-ignition-viem:*,ignition:*' pnpm test",
"test:coverage": "nyc mocha \"test/**/*.ts\"",
"test:build": "tsc --project ./test/",
"clean": "rimraf .nyc_output coverage dist tsconfig.tsbuildinfo ./test/fixture-projects/**/deployments ./test/fixture-projects/**/artifacts"
}
}