UNPKG

@layerzerolabs/hardhat-deploy

Version:

Hardhat Plugin For Replicable Deployments And Tests

113 lines (112 loc) 3.2 kB
{ "name": "@layerzerolabs/hardhat-deploy", "version": "0.11.45-lz.4", "description": "Hardhat Plugin For Replicable Deployments And Tests", "repository": { "type": "git", "url": "git+https://github.com/LayerZero-Labs/hardhat-deploy.git" }, "author": "wighawag", "license": "MIT", "publishConfig": { "access": "restricted", "preid": "lz" }, "main": "dist/src/index.js", "types": "dist/src/index.d.ts", "keywords": [ "ethereum", "smart-contracts", "deployment", "test", "testing", "tool", "hardhat", "hardhat-deploy", "hardhat-plugin" ], "files": [ "dist/src/", "dist/types*", "dist/extendedArtifacts/", "extendedArtifacts/", "dist/extendedArtifactsTron/", "src/", "types.ts", "LICENSE", "README.md", "solc_0.6/", "solc_0.7", "solc_0.8" ], "devDependencies": { "@changesets/cli": "^2.11.1", "@layerzerolabs/hardhat-deploy": "*", "@layerzerolabs/hardhat-tron-solc": "2.0.10-tron", "@types/chai": "^4.2.21", "@types/debug": "^4.1.7", "@types/fs-extra": "^9.0.12", "@types/mocha": "^9.0.0", "@types/node": "^16.6.2", "@typescript-eslint/eslint-plugin": "^6.12.0", "@typescript-eslint/parser": "^6.12.0", "bignumber.js": "^9.1.2", "chai": "^4.2.0", "dotenv": "^10.0.0", "eslint": "^7.32.0", "eslint-config-prettier": "^8.3.0", "hardhat": "^2.19.1", "mocha": "^9.1.0", "prettier": "^2.3.2", "prettier-plugin-solidity": "^1.0.0-beta.17", "solhint": "^3.3.6", "solhint-plugin-prettier": "^0.0.5", "source-map-support": "^0.5.12", "ts-node": "^10.2.1", "typescript": "^5.2.2" }, "dependencies": { "@ethersproject/abi": "^5.7.0", "@ethersproject/abstract-signer": "^5.7.0", "@ethersproject/address": "^5.7.0", "@ethersproject/bignumber": "^5.7.0", "@ethersproject/bytes": "^5.7.0", "@ethersproject/constants": "^5.7.0", "@ethersproject/contracts": "^5.7.0", "@ethersproject/providers": "^5.7.2", "@ethersproject/solidity": "^5.7.0", "@ethersproject/transactions": "^5.7.0", "@ethersproject/wallet": "^5.7.0", "@types/qs": "^6.9.7", "axios": "^0.21.1", "chalk": "^4.1.2", "chokidar": "^3.5.2", "debug": "^4.3.2", "enquirer": "^2.3.6", "ethers": "^5.7.0", "form-data": "^4.0.0", "fs-extra": "^10.0.0", "match-all": "^1.2.6", "murmur-128": "^0.2.1", "qs": "^6.9.4", "tronweb": "^5.3.1", "zksync-web3": "^0.14.3" }, "scripts": { "prepare": "node ./.setup.js", "compile": "hardhat compile", "compile-tron": "hardhat clean --network tron && hardhat compile --network tron", "lint": "eslint \"**/*.{js,ts}\" && solhint src/**/*.sol", "lint:fix": "eslint --fix \"**/*.{js,ts}\" && solhint --fix src/**/*.sol", "format": "prettier --write \"**/*.{ts,js,sol}\"", "test": "mocha './test/*.test.ts'", "build": "rm -rf ./dist && tsc", "watch": "tsc -w", "publish:next": "npm publish --tag next", "publish:release": "npm publish", "prepublishOnly": "npm run build" }, "resolutions": { "@layerzerolabs/hardhat-deploy": "link:" } }