{
  "name": "ghreview",
  "version": "3.0.25",
  "description": "GitHub PR-based code review workflow for AI-assisted development",
  "type": "module",
  "main": "lib/index.js",
  "bin": {
    "ghreview": "bin/ghreview.js"
  },
  "scripts": {
    "test": "npm run lint && vitest run",
    "test:watch": "npm run lint && vitest",
    "lint": "standard",
    "lint:fix": "standard --fix",
    "prepublishOnly": "npm test"
  },
  "keywords": [
    "github",
    "code-review",
    "ai",
    "cli",
    "pull-request"
  ],
  "author": "Rod <rod@vagg.org> (http://r.va.gg/)",
  "license": "Apache-2.0",
  "dependencies": {
    "@octokit/rest": "^22.0.0",
    "chalk": "^5.6.2",
    "ghauth": "^7.0.0",
    "ora": "^9.0.0",
    "simple-git": "^3.28.0",
    "yargs": "^18.0.0"
  },
  "devDependencies": {
    "@semantic-release/changelog": "^6.0.3",
    "@semantic-release/commit-analyzer": "^13.0.1",
    "@semantic-release/git": "^10.0.1",
    "@semantic-release/github": "^12.0.0",
    "@semantic-release/npm": "^13.1.1",
    "@semantic-release/release-notes-generator": "^14.0.3",
    "conventional-changelog-conventionalcommits": "^10.2.0",
    "nock": "^14.0.10",
    "standard": "^17.1.2",
    "vitest": "^4.0.17"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/rvagg/ghreview.git"
  },
  "release": {
    "branches": [
      "master"
    ],
    "plugins": [
      [
        "@semantic-release/commit-analyzer",
        {
          "preset": "conventionalcommits",
          "releaseRules": [
            {
              "breaking": true,
              "release": "major"
            },
            {
              "revert": true,
              "release": "patch"
            },
            {
              "type": "feat",
              "release": "minor"
            },
            {
              "type": "fix",
              "release": "patch"
            },
            {
              "type": "chore",
              "release": "patch"
            },
            {
              "type": "docs",
              "release": "patch"
            },
            {
              "type": "test",
              "release": "patch"
            },
            {
              "scope": "no-release",
              "release": false
            }
          ]
        }
      ],
      [
        "@semantic-release/release-notes-generator",
        {
          "preset": "conventionalcommits",
          "presetConfig": {
            "types": [
              {
                "type": "feat",
                "section": "Features"
              },
              {
                "type": "fix",
                "section": "Bug Fixes"
              },
              {
                "type": "chore",
                "section": "Trivial Changes"
              },
              {
                "type": "docs",
                "section": "Trivial Changes"
              },
              {
                "type": "test",
                "section": "Tests"
              }
            ]
          }
        }
      ],
      "@semantic-release/changelog",
      "@semantic-release/npm",
      "@semantic-release/github",
      "@semantic-release/git"
    ]
  }
}
