Files
bandada/libs/hardhat/package.json
Vivian Plasencia 23e1f65843 chore: v2.2.6
2024-04-09 20:37:22 +02:00

52 lines
1.5 KiB
JSON

{
"name": "@bandada/hardhat",
"version": "2.2.6",
"description": "A Hardhat plugin which provides tasks to deploy Bandada contracts.",
"license": "MIT",
"main": "dist/index.node.js",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.node.js"
},
"types": "dist/types/index.d.ts",
"files": [
"dist/",
"src/",
"LICENSE",
"README.md"
],
"repository": "https://github.com/bandada-infra/bandada",
"homepage": "https://github.com/bandada-infra/bandada/tree/main/libs/hardhat",
"bugs": {
"url": "https://github.com/bandada-infra/bandada.git/issues"
},
"scripts": {
"build:watch": "rollup -c rollup.config.ts -w --configPlugin typescript",
"build": "rimraf dist && rollup -c rollup.config.ts --configPlugin typescript",
"prepublishOnly": "yarn build"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@rollup/plugin-typescript": "^11.0.0",
"ethers": "^5.4.7",
"hardhat": "^2.11.0",
"rimraf": "^4.1.2",
"rollup": "^3.17.2",
"rollup-plugin-cleanup": "^3.2.1",
"typescript": "^4.9.5"
},
"peerDependencies": {
"@bandada/contracts": "2.2.6",
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@semaphore-protocol/contracts": "3.4.0",
"ethers": "^5.4.7",
"hardhat": "^2.11.0"
},
"dependencies": {
"hardhat-dependency-compiler": "^1.1.3"
}
}