@better-builds/lets-version
Version:
A package that reads your conventional commits and git history and recommends (or applies) a SemVer version bump for you
88 lines (87 loc) • 2.61 kB
JSON
{
"name": "@better-builds/lets-version",
"version": "1.6.0",
"description": "A package that reads your conventional commits and git history and recommends (or applies) a SemVer version bump for you",
"exports": "./dist/lets-version.js",
"bin": "./bin/cli.js",
"typings": "./dist/lets-version.d.ts",
"types": "./dist/lets-version.d.ts",
"type": "module",
"engines": {
"bun": ">=1.3.1",
"node": ">=22"
},
"files": [
"dist/",
"bin/"
],
"scripts": {
"build": "bun run clean && bun run compile && bun run compile:bin",
"clean": "rm -rf ./dist && rm -rf ./bin",
"compile": "tsc --project ./tsconfig.build.json",
"compile:bin": "bun build --production --target=node --outfile=./bin/cli.js ./src/cli.ts",
"lint": "eslint --no-error-on-unmatched-pattern './src/**/*.{tsx,ts,jsx,js,mjs}'",
"lint:fix": "bun run lint -- --fix",
"start": "tsx src/cli.ts",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"test:watch:ui": "vitest --ui",
"typecheck": "tsc --project ./tsconfig.json --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/benduran/lets-version.git"
},
"keywords": [
"Version",
"Bump",
"SemVer",
"Conventional",
"Commits",
"Not-Lerna"
],
"author": "Benjamin Duran <stratodyne@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/benduran/lets-version/issues"
},
"homepage": "https://github.com/benduran/lets-version#readme",
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@types/conventional-commits-parser": "^5.0.0",
"@types/fs-extra": "^11.0.4",
"@types/prompts": "^2.4.9",
"@types/semver": "^7.7.1",
"@types/semver-utils": "^1.1.3",
"@types/yargs": "^17.0.33",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"chalk": "^5.6.2",
"eslint-config-react-yas": "^5.2.2",
"fast-glob": "^3.3.3",
"husky": "^9.1.7",
"pnpm": "^10.17.1",
"tsup": "^8.5.0",
"tsx": "^4.20.6",
"type-fest": "^5.0.1",
"typescript": "^5.9.2",
"vite": "^7.1.7",
"vitest": "^3.2.4"
},
"dependencies": {
"@npmcli/map-workspaces": "^5.0.0",
"app-root-path": "^3.1.0",
"conventional-commits-parser": "^3.2.4",
"dayjs": "^1.11.18",
"detect-indent": "^7.0.2",
"package-manager-detector": "^1.5.0",
"fs-extra": "^11.3.2",
"prompts": "^2.4.2",
"semver": "^7.7.2",
"semver-utils": "^1.1.4",
"yaml": "^2.8.1",
"yargs": "^18.0.0"
}
}