{ "name": "bumpp", "version": "9.1.0", "packageManager": "pnpm@8.0.0", "description": "Bump version, commit changes, tag, and push to Git", "author": { "name": "James Messinger", "url": "https://jamesmessinger.com" }, "license": "MIT", "homepage": "https://github.com/antfu/bumpp", "repository": { "type": "git", "url": "https://github.com/antfu/bumpp.git" }, "keywords": [ "version", "bump", "npm", "node", "bower", "package", "git", "tag", "push", "prompt" ], "exports": { ".": { "types": "./dist/index.d.ts", "require": "./dist/index.js", "import": "./dist/index.mjs" } }, "main": "dist/index.js", "module": "dist/index.mjs", "types": "dist/index.d.ts", "bin": { "bumpp": "bin/bumpp.js" }, "files": [ "bin", "dist" ], "engines": { "node": ">=10" }, "scripts": { "clean": "rimraf .nyc_output coverage dist", "lint": "eslint .", "build": "tsup src/index.ts src/cli/index.ts --format esm,cjs --dts --clean", "watch": "npm run build -- --watch src", "start": "esno src/cli/run.ts", "upgrade": "npm-check -u && npm audit fix", "bumpp": "esno src/cli/run.ts", "prepublishOnly": "npm run clean && npm run build", "release": "npm run bumpp && npm publish" }, "dependencies": { "@jsdevtools/ez-spawn": "^3.0.4", "c12": "^1.2.0", "cac": "^6.7.14", "fast-glob": "^3.2.12", "prompts": "^2.4.2", "semver": "^7.3.8" }, "devDependencies": { "@antfu/eslint-config": "^0.38.0", "@types/node": "^18.15.11", "@types/prompts": "^2.4.3", "@types/semver": "^7.3.13", "detect-indent": "^7.0.1", "detect-newline": "^4.0.0", "eslint": "^8.37.0", "esno": "^0.16.3", "log-symbols": "^5.1.0", "npm-check": "^6.0.1", "picocolors": "^1.0.0", "rimraf": "^4.4.1", "tsup": "^6.7.0", "typescript": "^5.0.2" } }