{
  "name": "ghauth",
  "version": "7.0.1",
  "description": "Create and load persistent GitHub authentication tokens for command-line apps",
  "type": "module",
  "exports": "./ghauth.js",
  "engines": {
    "node": ">=20"
  },
  "scripts": {
    "lint": "standard",
    "test:unit": "node --test test/*.test.js",
    "test": "npm run lint && npm run test:unit",
    "smoke": "node test/smoke.js",
    "build": "true"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/rvagg/ghauth.git"
  },
  "homepage": "https://github.com/rvagg/ghauth",
  "authors": [
    "Rod Vagg <r@va.gg> (https://github.com/rvagg)",
    "Jeppe Nejsum Madsen <jeppe@ingolfs.dk> (https://github.com/jeppenejsum)",
    "Max Ogden <max@maxogden.com> (https://github.com/maxogden)"
  ],
  "keywords": [
    "github",
    "auth",
    "frozenpizza"
  ],
  "license": "MIT",
  "dependencies": {
    "ora": "^9.1.0",
    "read": "^5.0.1"
  },
  "devDependencies": {
    "@semantic-release/changelog": "^6.0.3",
    "@semantic-release/commit-analyzer": "^13.0.0",
    "@semantic-release/git": "^10.0.1",
    "@semantic-release/github": "^12.0.0",
    "@semantic-release/npm": "^13.0.0",
    "@semantic-release/release-notes-generator": "^14.0.1",
    "conventional-changelog-conventionalcommits": "^9.0.0",
    "semantic-release": "^25.0.0",
    "standard": "^17.1.2"
  },
  "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"
    ]
  }
}
