{
  "name": "hardhat-diamond-abi",
  "version": "3.0.1",
  "description": "Hardhat plugin to combine multiple ABIs into a Diamond ABI artifact.",
  "author": "Blaine Bublitz <blaine.bublitz@gmail.com> (https://github.com/phated)",
  "repository": "projectsophon/hardhat-diamond-abi",
  "license": "GPL-3.0",
  "engines": {
    "node": ">=14"
  },
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist/",
    "src/",
    "LICENSE",
    "README.md"
  ],
  "scripts": {
    "prepare": "yarn build && cpy ./src/contract.sol dist",
    "lint": "eslint .",
    "pretest": "yarn build",
    "test": "mocha --exit --recursive 'test/**/*.test.ts'",
    "format": "prettier --write .",
    "build": "tsc --build src",
    "watch": "tsc --build src -w"
  },
  "dependencies": {
    "debug": "^4.3.3",
    "ethers": "^5.5.2"
  },
  "peerDependencies": {
    "hardhat": "^2.0.0"
  },
  "devDependencies": {
    "@projectsophon/eslint-config": "0.0.2",
    "@projectsophon/prettier-config": "0.0.0",
    "@projectsophon/tsconfig": "0.0.0",
    "@types/chai": "^4.2.14",
    "@types/debug": "^4.1.5",
    "@types/mocha": "^8.2.0",
    "@types/node": "^14.14.22",
    "chai": "^4.2.0",
    "cpy-cli": "3.1.1",
    "eslint": "^7.25.0",
    "hardhat": "^2.0.0",
    "mocha": "^8.0.1",
    "prettier": "^2.2.1",
    "ts-node": "^8.1.0",
    "typescript": "4.2.x"
  },
  "prettier": "@projectsophon/prettier-config",
  "eslintConfig": {
    "extends": "@projectsophon/eslint-config"
  },
  "keywords": [
    "diamond",
    "abi",
    "solidity",
    "diamond pattern",
    "eip-2535",
    "hardhat",
    "hardhat-plugin"
  ]
}
