{
  "name": "@morpho-labs/morpho-ethers-contract",
  "version": "1.20.1",
  "description": "Use Morpho contracts with ethers js",
  "main": "lib/index.js",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/morpho-labs/morpho-ethers-contract.git"
  },
  "author": "Julien <julien@morpho.xyz>",
  "engines": {
    "node": ">=12.0"
  },
  "keywords": [
    "ethers",
    "evm",
    "smart contract"
  ],
  "bugs": {
    "url": "https://github.com/morpho-labs/morpho-ethers-contract/issues"
  },
  "homepage": "https://github.com/morpho-labs/morpho-ethers-contract#readme",
  "license": "MIT",
  "scripts": {
    "build": "tsc --build ./tsconfig.build.json",
    "clean": "rm -rf ./lib/",
    "generate": "typechain --target=ethers-v5 --out-dir src \"./abis/**/*.json\"",
    "cm": "cz",
    "lint": "eslint ./src --fix",
    "prepare": "husky install",
    "test:watch": "jest --watch",
    "test": "jest --coverage",
    "typecheck": "tsc --noEmit"
  },
  "dependencies": {
    "ethers": "^5.7.2",
    "@ethersproject/abi": "^5.7.0",
    "@ethersproject/providers": "^5.7.2"
  },
  "devDependencies": {
    "@trivago/prettier-plugin-sort-imports": "^4.1.1",
    "@typechain/ethers-v5": "^10.2.0",
    "@typescript-eslint/eslint-plugin": "^5.56.0",
    "@typescript-eslint/parser": "^5.56.0",
    "commitizen": "^4.3.0",
    "conventional-changelog-conventionalcommits": "^5.0.0",
    "cz-conventional-changelog": "^3.3.0",
    "dotenv": "^16.0.3",
    "eslint": "^8.36.0",
    "eslint-config-prettier": "^8.8.0",
    "eslint-plugin-node": "^11.1.0",
    "eslint-plugin-prettier": "^4.2.1",
    "husky": "^8.0.3",
    "lint-staged": "^13.2.0",
    "prettier": "^2.8.6",
    "typechain": "^8.1.1",
    "typescript": "^5.0.2"
  },
  "peerDependencies": {
    "ethers": "^5.0.0",
    "@ethersproject/abi": "^5.0.0",
    "@ethersproject/providers": "^5.0.0"
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  },
  "publishConfig": {
    "access": "public"
  },
  "lint-staged": {
    "*.ts": "eslint --cache --cache-location .eslintcache --fix"
  },
  "release": {
    "branches": [
      "main"
    ],
    "plugins": [
      [
        "@semantic-release/commit-analyzer",
        {
          "preset": "conventionalcommits",
          "releaseRules": [
            {
              "type": "build",
              "scope": "deps",
              "release": "patch"
            }
          ]
        }
      ],
      [
        "@semantic-release/release-notes-generator",
        {
          "preset": "conventionalcommits",
          "presetConfig": {
            "types": [
              {
                "type": "feat",
                "section": "Features"
              },
              {
                "type": "fix",
                "section": "Bug Fixes"
              },
              {
                "type": "build",
                "section": "Dependencies and Other Build Updates",
                "hidden": false
              }
            ]
          }
        }
      ],
      "@semantic-release/npm",
      "@semantic-release/github"
    ]
  }
}
