{
  "name": "ethers-types",
  "version": "3.18.1",
  "author": {
    "name": "Romain (Rubilmax) Milon",
    "email": "rmilon@gmail.com",
    "url": "https://github.com/rubilmax"
  },
  "license": "MIT",
  "main": "dist/index.js",
  "files": [
    "dist/*"
  ],
  "scripts": {
    "prebuild": "yarn clean && yarn typechain",
    "build": "tsc --build ./tsconfig.build.json",
    "clean": "rm -rf src/",
    "typechain": "npx typechain --target ethers-v6 --out-dir src abis/**/**/**/**/**/**/*.json",
    "prepare": "husky install"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/rubilmax/ethers-types.git"
  },
  "bugs": {
    "url": "https://github.com/rubilmax/ethers-types/issues"
  },
  "keywords": [
    "ethereum",
    "smart-contracts",
    "ethers",
    "types",
    "typescript",
    "erc20",
    "evm"
  ],
  "devDependencies": {
    "@trivago/prettier-plugin-sort-imports": "^4.3.0",
    "@typechain/ethers-v6": "^0.5.1",
    "@types/node": "^20.11.13",
    "commitizen": "^4.3.0",
    "conventional-changelog-conventionalcommits": "^8.0.0",
    "cz-conventional-changelog": "^3.3.0",
    "ethers": "^6.12.0",
    "husky": "^8.0.3",
    "lint-staged": "^14.0.1",
    "prettier": "^3.2.4",
    "typechain": "^8.3.2",
    "typescript": "^5.3.3"
  },
  "peerDependencies": {
    "ethers": "^6.0.0"
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  },
  "lint-staged": {
    "*.json": "yarn prettier",
    "*.ts": "yarn prettier"
  },
  "release": {
    "branches": [
      "main",
      "next"
    ],
    "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"
    ]
  }
}
