{
  "git": {
    "tagName": "v${version}",
    "changelog": "npx auto-changelog --hide-credit --stdout --commit-limit false --unreleased-only -t keepachangelog",
    "commitMessage": "Release ${version}",
    "tag": true,
    "requireCleanWorkingDir": false
  },
  "github": {
    "release": true,
    "releaseName": "Release ${version}"
  },
  "hooks": {
    "before:init": [
      "npm run lint"
    ],
    "after:bump": [
      "npm run build",
      "npx auto-changelog -p"
    ],
    "after:release": "echo Successfully released ${name} v${version} to ${repo.repository}."
  }
}
