bumpp
Version:
Bump version, commit changes, tag, and push to Git
90 lines • 1.94 kB
JSON
{
"name": "bumpp",
"type": "module",
"version": "10.2.2",
"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": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
}
},
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"types": "dist/index.d.mts",
"bin": {
"bumpp": "bin/bumpp.mjs"
},
"files": [
"bin",
"dist"
],
"engines": {
"node": ">=18"
},
"dependencies": {
"ansis": "^4.1.0",
"args-tokenizer": "^0.3.0",
"c12": "^3.2.0",
"cac": "^6.7.14",
"escalade": "^3.2.0",
"jsonc-parser": "^3.3.1",
"package-manager-detector": "^1.3.0",
"semver": "^7.7.2",
"tinyexec": "^1.0.1",
"tinyglobby": "^0.2.14",
"yaml": "^2.8.0"
},
"devDependencies": {
"@antfu/eslint-config": "^5.0.0",
"@types/node": "^24.1.0",
"@types/prompts": "^2.4.9",
"@types/semver": "^7.7.0",
"eslint": "^9.32.0",
"prompts": "^2.4.2",
"rimraf": "^6.0.1",
"tiny-conventional-commits-parser": "^0.0.1",
"tsx": "^4.20.3",
"typescript": "^5.9.2",
"unbuild": "^3.6.0",
"vitest": "^3.2.4"
},
"scripts": {
"lint": "eslint .",
"build": "unbuild",
"stub": "unbuild --stub",
"start": "tsx src/cli/run.ts",
"test": "vitest",
"bumpp": "tsx src/cli/run.ts",
"release": "pnpm run bumpp && pnpm publish",
"typecheck": "tsc --noEmit"
}
}