Files
semaphore/packages/hardhat/package.json
2024-02-10 15:26:07 +00:00

47 lines
1.4 KiB
JSON

{
"name": "@semaphore-protocol/hardhat",
"version": "4.0.0-alpha.4",
"description": "A Semaphore Hardhat plugin to deploy verifiers and Semaphore contract.",
"type": "module",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"exports": {
"types": "./dist/types/index.d.ts",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
},
"files": [
"dist/",
"src/",
"LICENSE",
"README.md"
],
"repository": "https://github.com/semaphore-protocol/semaphore",
"homepage": "https://github.com/semaphore-protocol/semaphore/tree/main/packages/hardhat",
"bugs": {
"url": "https://github.com/semaphore-protocol/semaphore.git/issues"
},
"scripts": {
"build": "rimraf dist && rollup -c rollup.config.ts --configPlugin typescript",
"prepublishOnly": "yarn build"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"hardhat": "^2.19.4",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-typescript2": "^0.36.0"
},
"peerDependencies": {
"hardhat": "^2.19.4"
},
"dependencies": {
"@nomicfoundation/hardhat-ethers": "^3.0.0",
"@semaphore-protocol/contracts": "4.0.0-alpha.4",
"ethers": "^6.4.0",
"hardhat-dependency-compiler": "^1.1.3"
}
}