{
  "name": "gitcoach-cli",
  "version": "1.1.4",
  "description": "AI-powered Git coach CLI that prevents mistakes before they happen",
  "type": "module",
  "main": "dist/index.js",
  "bin": {
    "gitcoach": "./bin/run.js"
  },
  "scripts": {
    "dev": "tsc -w",
    "prebuild": "node scripts/inject-version.js",
    "build": "tsc && npm run copy-locales",
    "copy-locales": "node -e \"const fs=require('fs');const path=require('path');const src='src/i18n/locales';const dest='dist/i18n/locales';fs.mkdirSync(dest,{recursive:true});fs.readdirSync(src).forEach(f=>fs.copyFileSync(path.join(src,f),path.join(dest,f)));\"",
    "start": "node ./bin/run.js",
    "test": "jest",
    "test:coverage": "jest --coverage",
    "lint": "eslint src --ext .ts",
    "lint:fix": "eslint src --ext .ts --fix",
    "format": "prettier --write \"src/**/*.ts\"",
    "clean": "rimraf dist",
    "prepublishOnly": "npm run build"
  },
  "keywords": [
    "git",
    "cli",
    "copilot",
    "ai",
    "coach",
    "helper",
    "beginner",
    "multilingual"
  ],
  "author": "kposz",
  "license": "MIT",
  "oclif": {
    "bin": "gitcoach",
    "dirname": "gitcoach",
    "commands": "./dist/commands",
    "topicSeparator": " "
  },
  "files": [
    "/bin",
    "/dist"
  ],
  "dependencies": {
    "@inquirer/prompts": "^7.2.1",
    "@oclif/core": "^4.2.1",
    "boxen": "^8.0.1",
    "chalk": "^5.4.1",
    "cli-table3": "^0.6.5",
    "conf": "^13.1.0",
    "i18next": "^24.2.2",
    "ora": "^8.1.1",
    "simple-git": "^3.30.0"
  },
  "devDependencies": {
    "@types/jest": "^29.5.14",
    "@types/node": "^22.10.7",
    "@typescript-eslint/eslint-plugin": "^8.21.0",
    "@typescript-eslint/parser": "^8.21.0",
    "eslint": "^9.18.0",
    "jest": "^29.7.0",
    "prettier": "^3.4.2",
    "rimraf": "^6.0.1",
    "ts-jest": "^29.2.5",
    "typescript": "^5.7.3"
  },
  "engines": {
    "node": ">=18.0.0"
  }
}
