{
  "name": "git-merged-branches",
  "type": "module",
  "version": "0.5.1",
  "description": "CLI tool to list all Git branches merged into a base branch with issue link formatting",
  "author": {
    "name": "VChet",
    "url": "https://github.com/VChet"
  },
  "license": "MIT",
  "homepage": "https://github.com/VChet/git-merged-branches#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/VChet/git-merged-branches.git"
  },
  "bugs": {
    "url": "https://github.com/VChet/git-merged-branches/issues"
  },
  "keywords": [
    "git",
    "cli",
    "branch",
    "issue-tracker"
  ],
  "bin": {
    "git-merged-branches": "dist/index.mjs",
    "gmb": "dist/index.mjs"
  },
  "files": [
    "LICENSE.md",
    "README.md",
    "dist/"
  ],
  "engines": {
    "node": ">=22.18.0"
  },
  "devDependencies": {
    "@types/node": "^26.2.0",
    "commit-and-tag-version": "^13.1.2",
    "eslint": "^10.8.1",
    "neostandard": "0.14.0-next.1",
    "publint": "^0.3.23",
    "tsdown": "^0.22.14",
    "typescript": "^6.0.3",
    "vitest": "^4.1.10"
  },
  "scripts": {
    "build": "tsdown",
    "test": "vitest --run",
    "lint:ts": "tsc",
    "lint:js": "eslint .",
    "lint:js:fix": "npm run lint:js -- --fix",
    "lint:all": "npm run lint:ts && npm run lint:js",
    "release": "commit-and-tag-version"
  }
}