{
  "name": "changelog-github-custom",
  "version": "1.2.7",
  "description": "Custom GitHub changelog generator for Changesets",
  "keywords": [
    "changelog",
    "changesets",
    "github",
    "release"
  ],
  "author": "Marc Tremblay",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/sapientpants/changelog-github-custom.git"
  },
  "main": "./dist/cjs/changelog-custom.js",
  "module": "./dist/esm/changelog-custom.js",
  "types": "./dist/types/changelog-custom.d.ts",
  "exports": {
    ".": {
      "types": "./dist/types/changelog-custom.d.ts",
      "import": "./dist/esm/changelog-custom.js",
      "require": "./dist/cjs/changelog-custom.js",
      "default": "./dist/esm/changelog-custom.js"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "packageManager": "pnpm@10.17.0",
  "publishConfig": {
    "access": "public"
  },
  "engines": {
    "node": ">=22.0.0"
  },
  "scripts": {
    "dev": "tsc --watch --preserveWatchOutput",
    "start": "node dist/index.js",
    "build": "pnpm build:clean && pnpm build:esm && pnpm build:cjs",
    "build:clean": "rimraf dist",
    "build:esm": "tsc -p tsconfig.esm.json",
    "build:cjs": "tsc -p tsconfig.cjs.json",
    "build:watch": "tsc -p tsconfig.esm.json --watch",
    "build:watch:cjs": "tsc -p tsconfig.cjs.json --watch",
    "typecheck": "tsc -p tsconfig.json --noEmit",
    "typecheck:watch": "tsc -p tsconfig.json --noEmit --watch",
    "lint": "eslint .",
    "lint:fix": "eslint . --fix",
    "lint:workflows": "./scripts/actionlint.sh",
    "lint:markdown": "markdownlint-cli2 \"**/*.md\" \"#node_modules\"",
    "lint:markdown:fix": "markdownlint-cli2 --fix \"**/*.md\" \"#node_modules\"",
    "lint:yaml": "yamllint '**/*.{yml,yaml}' --ignore='node_modules/**' --ignore='.github/workflows/**' --ignore='pnpm-lock.yaml'",
    "format": "prettier --check .",
    "format:fix": "prettier --write .",
    "test": "vitest run --reporter=verbose",
    "test:watch": "vitest",
    "test:ui": "vitest --ui",
    "test:coverage": "vitest run --reporter=verbose --coverage",
    "test:coverage:watch": "vitest --coverage",
    "coverage:report": "vitest run --coverage --reporter=verbose",
    "coverage:open": "open coverage/index.html",
    "clean": "rimraf dist coverage",
    "deps:check": "depcheck",
    "reset": "pnpm clean && pnpm install",
    "quick-check": "pnpm typecheck && pnpm lint && pnpm test",
    "precommit": "pnpm audit --audit-level critical && pnpm deps:check && pnpm typecheck && pnpm lint && pnpm lint:workflows && pnpm lint:markdown && pnpm lint:yaml && pnpm format && pnpm test",
    "verify": "pnpm precommit",
    "setup": "./scripts/setup.sh",
    "lint-staged": "lint-staged",
    "sbom": "pnpm dlx @cyclonedx/cdxgen -o sbom.cdx.json",
    "scan:container": "./scripts/scan-container.sh",
    "scan:container:sarif": "./scripts/scan-container.sh --format sarif --output container-scan.sarif",
    "release": "changeset version && pnpm build",
    "release:publish": "pnpm build && changeset publish",
    "release:tag": "git add -A && git commit -m \"chore(release): version packages\" && git tag -a v$(node -p \"require('./package.json').version\") -m \"Release\"",
    "changeset": "changeset",
    "changeset:status": "changeset status --since=main",
    "ci:local": "./scripts/ci-local.sh",
    "ci:local:fast": "./scripts/ci-local.sh --fast",
    "doctor": "node -e \"console.log('Node:', process.version); console.log('npm scripts:', Object.keys(require('./package.json').scripts).length, 'available'); console.log('Run: pnpm run help')\"",
    "help": "node -e \"const s=require('./package.json').scripts; console.log('Available commands:'); Object.keys(s).sort().forEach(k => console.log('  pnpm run ' + k.padEnd(20) + ' # ' + s[k].split(' ')[0]))\""
  },
  "lint-staged": {
    "*.{ts,tsx,js,json,md,yml,yaml}": [
      "prettier --write"
    ],
    "*.{ts,tsx,js,json,jsonc,json5}": [
      "eslint --fix"
    ],
    "*.md": [
      "markdownlint-cli2 --fix"
    ],
    "*.{yml,yaml}": [
      "yamllint"
    ]
  },
  "dependencies": {
    "@changesets/get-github-info": "^0.6.0",
    "@changesets/types": "^6.1.0"
  },
  "devDependencies": {
    "@changesets/cli": "^2.29.7",
    "@changesets/types": "6.1.0",
    "@commitlint/cli": "20.1.0",
    "@commitlint/config-conventional": "20.0.0",
    "@cyclonedx/cdxgen": "11.9.0",
    "@types/node": "^24.7.2",
    "@typescript-eslint/eslint-plugin": "^8.46.0",
    "@typescript-eslint/parser": "^8.46.0",
    "@vitest/coverage-v8": "^3.2.4",
    "depcheck": "^1.4.7",
    "eslint": "^9.37.0",
    "eslint-config-prettier": "^10.1.8",
    "eslint-plugin-jsonc": "2.21.0",
    "eslint-plugin-prettier": "^5.5.4",
    "eslint-plugin-security": "^3.0.1",
    "eslint-plugin-unicorn": "^61.0.2",
    "globals": "^16.4.0",
    "husky": "^9.1.7",
    "jsonc-eslint-parser": "2.4.1",
    "lint-staged": "^16.2.4",
    "markdownlint-cli2": "^0.18.1",
    "prettier": "^3.6.2",
    "rimraf": "^6.0.1",
    "typescript": "^5.9.3",
    "vite": "7.1.9",
    "vitest": "^3.2.4",
    "yaml-lint": "1.7.0"
  }
}
