{
  "name": "cli-mr-creator",
  "version": "3.1.0",
  "description": "Create a merge request from the terminal for Gitlab",
  "keywords": [
    "cli",
    "gitlab",
    "typescript"
  ],
  "bugs": {
    "url": "https://github.com/CMarzin/cli-mr-creator/issues"
  },
  "author": "Corentin Marzin ( https://corentinmarzin.fr/ )",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/CMarzin/cli-mr-creator"
  },
  "license": "MIT",
  "files": [
    "bin"
  ],
  "type": "module",
  "main": "bin/cli.js",
  "bin": {
    "cli-mr-creator": "bin/cli.js"
  },
  "engines": {
    "node": "20.17.0"
  },
  "scripts": {
    "cli-mr-creator": "cli-mr-creator",
    "dev": "NODE_ENV=dev tsx src/cli.ts",
    "build": "tsc && npm run format",
    "format": "prettier --write .",
    "check-format": "prettier --check .",
    "test": "vitest run",
    "test:coverage": "vitest run --coverage",
    "test:watch": "vitest --coverage.enabled --ui",
    "ci": "npm run build && npm run check-format && npm run test",
    "local-release": "changeset version && changeset publish",
    "prepublishOnly": "npm run ci"
  },
  "dependencies": {
    "axios": "^1.7.2",
    "colors": "^1.4.0",
    "dotenv": "^16.4.5",
    "enquirer": "^2.4.1",
    "nodegit": "^0.28.0-alpha.33"
  },
  "devDependencies": {
    "@changesets/cli": "^2.29.5",
    "@vitest/coverage-v8": "^3.2.4",
    "@vitest/ui": "^3.2.4",
    "prettier": "^3.6.2",
    "tsx": "^4.20.3",
    "typescript": "^5.8.3",
    "vitest": "^3.2.4"
  }
}
