{
  "name": "git-ai-summary",
  "version": "1.3.0",
  "description": "A tool for using AI to summarize your recent git history for in various languages and for various audiences.",
  "main": "./src/index.js",
  "bin": "./src/cli.js",
  "files": [
    "src/*"
  ],
  "scripts": {
    "cm": "cz",
    "lint": "eslint ./src/ --fix",
    "prepare": "husky install",
    "semantic-release": "semantic-release",
    "test:watch": "jest --watch",
    "test": "jest --coverage",
    "summarize": "node ./src/cli.js"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/danielthedifficult/git-ai-summary.git"
  },
  "license": "MIT",
  "author": {
    "name": "Daniel",
    "email": "npm@skyline.tech",
    "url": "https://github.com/danielthedifficult"
  },
  "engines": {
    "node": ">=12.0"
  },
  "keywords": [
    "openai",
    "chatgpt",
    "javascript",
    "summarizing",
    "translating",
    "utils",
    "collaborating",
    "jest",
    "husky",
    "commitizen",
    "semantic-release",
    "codecov"
  ],
  "bugs": {
    "url": "https://github.com/danielthedifficult/git-ai-summary/issues"
  },
  "homepage": "https://github.com/danielthedifficult/git-ai-summary#readme",
  "devDependencies": {
    "@types/jest": "^27.5.2",
    "@types/node": "^12.20.11",
    "conventional-changelog-conventionalcommits": "^5.0.0",
    "eslint": "^7.25.0",
    "eslint-config-prettier": "^8.3.0",
    "eslint-plugin-jest": "^27.2.1",
    "eslint-plugin-node": "^11.1.0",
    "eslint-plugin-prettier": "^3.4.0",
    "husky": "^6.0.0",
    "jest": "^27.2.0",
    "lint-staged": "^10.5.4",
    "prettier": "^2.2.1",
    "semantic-release": "^20.1.1"
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/@ryansonshine/cz-conventional-changelog"
    }
  },
  "lint-staged": {
    "*.js": "eslint --cache --cache-location .eslintcache --fix"
  },
  "release": {
    "branches": [
      "main"
    ],
    "plugins": [
      [
        "@semantic-release/commit-analyzer",
        {
          "preset": "conventionalcommits",
          "releaseRules": [
            {
              "type": "docs",
              "release": "patch"
            },
            {
              "breaking": true,
              "release": "major"
            },
            {
              "revert": true,
              "release": "patch"
            },
            {
              "type": "feat",
              "release": "minor"
            },
            {
              "type": "fix",
              "release": "patch"
            },
            {
              "type": "perf",
              "release": "patch"
            },
            {
              "type": "refactor",
              "release": "patch"
            },
            {
              "type": "style",
              "release": "patch"
            },
            {
              "type": "test",
              "release": "patch"
            },
            {
              "type": "chore",
              "release": "patch"
            },
            {
              "type": "build",
              "scope": "deps",
              "release": "patch"
            },
            {
              "type": "ci",
              "release": "patch"
            },
            {
              "type": "revert",
              "release": "patch"
            }
          ]
        }
      ],
      [
        "@semantic-release/release-notes-generator",
        {
          "preset": "conventionalcommits",
          "presetConfig": {
            "types": [
              {
                "type": "feat",
                "section": "Features"
              },
              {
                "type": "fix",
                "section": "Bug Fixes"
              },
              {
                "type": "build",
                "section": "Dependencies and Other Build Updates",
                "hidden": false
              }
            ]
          }
        }
      ],
      "@semantic-release/npm",
      "@semantic-release/github"
    ]
  },
  "dependencies": {
    "@ryansonshine/cz-conventional-changelog": "^3.3.4",
    "commitizen": "^4.3.0",
    "cz": "^1.8.2",
    "g": "^2.0.1",
    "openai": "^3.2.1"
  },
  "publishConfig": {
    "access": "public"
  }
}
