{
  "name": "github-changelog",
  "version": "3.1.0",
  "description": "Generate a changelog from GitHub pull requests",
  "keywords": [
    "changelog",
    "github"
  ],
  "homepage": "https://github.com/release-plan/github-changelog#readme",
  "bugs": {
    "url": "https://github.com/release-plan/github-changelog/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/release-plan/github-changelog.git"
  },
  "license": "MIT",
  "author": "Bo Borgerson <gigabo@gmail.com>",
  "type": "module",
  "exports": {
    ".": "./lib/index.js"
  },
  "bin": {
    "github-changelog": "bin/cli.js"
  },
  "files": [
    "lib",
    "bin"
  ],
  "dependencies": {
    "@manypkg/get-packages": "^2.2.0",
    "chalk": "^4.0.0",
    "cli-highlight": "^2.1.11",
    "execa": "^9.6.1",
    "hosted-git-info": "^4.0.0",
    "make-fetch-happen": "^15.0.5",
    "p-map": "^3.0.0",
    "progress": "^2.0.0",
    "yargs": "^17.1.0"
  },
  "devDependencies": {
    "@eslint/js": "^10.0.1",
    "@types/hosted-git-info": "^3.0.5",
    "@types/make-fetch-happen": "^10.0.4",
    "@types/node": "22.10.10",
    "@types/progress": "^2.0.7",
    "@types/yargs": "^17.0.35",
    "@typescript-eslint/eslint-plugin": "5.62.0",
    "@typescript-eslint/parser": "5.62.0",
    "concurrently": "^9.2.1",
    "eslint": "10.3.0",
    "eslint-config-prettier": "9.1.0",
    "eslint-plugin-prettier": "4.2.1",
    "fs-extra": "10.1.0",
    "globals": "^17.6.0",
    "prettier": "3.8.3",
    "release-plan": "^0.18.0",
    "rimraf": "3.0.2",
    "typescript": "6.0.3",
    "typescript-eslint": "^8.59.2",
    "vitest": "^3.0.4"
  },
  "engines": {
    "node": "22.* || 24.* || >= 26"
  },
  "changelog": {
    "repo": "release-plan/github-changelog",
    "labels": {
      "breaking": ":boom: Breaking Change",
      "enhancement": ":rocket: Enhancement",
      "bug": ":bug: Bug Fix",
      "documentation": ":memo: Documentation",
      "internal": ":house: Internal"
    },
    "cacheDir": ".changelog"
  },
  "scripts": {
    "build": "pnpm clean && tsc",
    "changelog": "node ./bin/cli.js",
    "clean": "rimraf lib",
    "format": "prettier . --write",
    "lint": "concurrently \"npm:lint:*(!fix)\" --names \"lint:\" --prefixColors auto",
    "lint:fix": "concurrently \"npm:lint:*:fix\" --names \"fix:\" --prefixColors auto && npm run format",
    "lint:format": "prettier . --check",
    "lint:js": "eslint . --cache",
    "lint:js:fix": "eslint . --fix",
    "prettier": "prettier --write 'src/**/*.ts'",
    "test": "vitest",
    "test-ci": "pnpm build && pnpm test",
    "watch": "pnpm build --watch"
  }
}