{
  "name": "@better-builds/lets-version",
  "version": "1.3.1",
  "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": "./dist/cli.js",
  "typings": "./dist/lets-version.d.ts",
  "types": "./dist/lets-version.d.ts",
  "type": "module",
  "files": [
    "dist/"
  ],
  "scripts": {
    "build": "run-s clean compile",
    "clean": "rm -rf ./dist",
    "compile": "tsc --project ./tsconfig.build.json",
    "lint": "eslint --no-error-on-unmatched-pattern './src/**/*.{tsx,ts,jsx,js,mjs}'",
    "lint:fix": "npm 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.5.8",
    "@types/semver-utils": "^1.1.3",
    "@types/yargs": "^17.0.33",
    "@vitest/coverage-v8": "^2.1.5",
    "@vitest/ui": "^2.1.5",
    "chalk": "^5.3.0",
    "eslint-config-react-yas": "^5.2.2",
    "fast-glob": "^3.3.2",
    "husky": "^9.1.7",
    "npm-run-all": "^4.1.5",
    "pnpm": "^9.14.2",
    "tsup": "^8.3.5",
    "tsx": "^4.19.2",
    "type-fest": "^4.27.0",
    "typescript": "^5.7.2",
    "vite": "^5.4.11",
    "vitest": "^2.1.5"
  },
  "dependencies": {
    "@npmcli/map-workspaces": "^3.0.6",
    "app-root-path": "^3.1.0",
    "conventional-commits-parser": "^3.2.4",
    "dayjs": "^1.11.13",
    "detect-indent": "^7.0.1",
    "detect-package-manager": "^3.0.2",
    "fs-extra": "^11.2.0",
    "prompts": "^2.4.2",
    "semver": "^7.6.3",
    "semver-utils": "^1.1.4",
    "yaml": "^2.6.1",
    "yargs": "^17.7.2"
  }
}
