{
  "name": "bumpp",
  "type": "module",
  "version": "12.0.0",
  "description": "Bump version, commit changes, tag, and push to Git",
  "authors": [
    {
      "name": "Anthony Fu",
      "url": "https://antfu.me"
    },
    {
      "name": "James Messinger",
      "url": "https://jamesmessinger.com"
    }
  ],
  "license": "MIT",
  "homepage": "https://github.com/antfu-collective/bumpp",
  "repository": {
    "type": "git",
    "url": "https://github.com/antfu-collective/bumpp.git"
  },
  "keywords": [
    "version",
    "bump",
    "npm",
    "node",
    "bower",
    "package",
    "git",
    "tag",
    "push",
    "prompt"
  ],
  "exports": {
    ".": "./dist/index.mjs",
    "./cli": "./dist/cli.mjs",
    "./package.json": "./package.json"
  },
  "types": "dist/index.d.mts",
  "bin": {
    "bumpp": "bin/bumpp.mjs"
  },
  "files": [
    "bin",
    "dist"
  ],
  "engines": {
    "node": "^22.18.0 || ^24.11.0 || >=26.0.0"
  },
  "dependencies": {
    "args-tokenizer": "^0.3.0",
    "cac": "^7.0.0",
    "jsonc-parser": "^3.3.1",
    "package-manager-detector": "^1.7.0",
    "tinyexec": "^1.2.4",
    "tinyglobby": "^0.2.17",
    "unconfig": "^7.5.0",
    "verkit": "^0.1.2",
    "yaml": "^2.9.0"
  },
  "inlinedDependencies": {
    "kleur": "3.0.3",
    "prompts": "2.4.2",
    "sisteransi": "1.0.5",
    "tiny-conventional-commits-parser": "0.1.0"
  },
  "devDependencies": {
    "@antfu/eslint-config": "^9.1.0",
    "@types/node": "^26.1.1",
    "@types/prompts": "^2.4.9",
    "@typescript/native-preview": "7.0.0-dev.20260707.2",
    "baseline-browser-mapping": "^2.10.43",
    "eslint": "^10.7.0",
    "premove": "^4.0.0",
    "prompts": "^2.4.2",
    "tiny-conventional-commits-parser": "^0.1.0",
    "tsdown": "^0.22.12",
    "tsx": "^4.23.1",
    "typescript": "^6.0.3",
    "vitest": "^4.1.10"
  },
  "scripts": {
    "lint": "eslint .",
    "build": "tsdown",
    "start": "tsx src/cli/run.ts",
    "test": "vitest",
    "bumpp": "tsx src/cli/run.ts",
    "release": "pnpm run bumpp",
    "typecheck": "tsgo --noEmit"
  }
}