{
  "name": "@oorabona/release-it-preset",
  "version": "1.4.1",
  "description": "Release tooling for solo and small-team JS maintainers: human-curated changelogs, OIDC zero-config publishing, recovery presets, monorepo support, pre-release diagnostics.",
  "type": "module",
  "keywords": [
    "release-it",
    "release",
    "changelog",
    "conventional-commits",
    "keep-a-changelog",
    "monorepo",
    "npm-publish",
    "provenance",
    "oidc",
    "trusted-publishing",
    "github-actions",
    "typescript",
    "semver",
    "cli",
    "developer-tools",
    "pnpm",
    "slsa"
  ],
  "author": "Olivier Orabona",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/oorabona/release-it-preset.git"
  },
  "bugs": {
    "url": "https://github.com/oorabona/release-it-preset/issues"
  },
  "homepage": "https://github.com/oorabona/release-it-preset#readme",
  "bin": {
    "release-it-preset": "bin/cli.js"
  },
  "exports": {
    "./config/default": "./config/default.js",
    "./config/hotfix": "./config/hotfix.js",
    "./config/changelog-only": "./config/changelog-only.js",
    "./config/manual-changelog": "./config/manual-changelog.js",
    "./config/no-changelog": "./config/no-changelog.js",
    "./config/republish": "./config/republish.js",
    "./config/retry-publish": "./config/retry-publish.js",
    "./scripts/*": {
      "types": "./dist/types/*.d.ts",
      "default": "./dist/scripts/*.js"
    }
  },
  "files": [
    "bin",
    "config",
    "dist/scripts",
    "dist/types",
    "scripts/templates",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "release-it-preset": "node ./bin/cli.js",
    "release": "pnpm run release:default",
    "release:default": "node ./bin/cli.js default",
    "release:default:dry-run": "node ./bin/cli.js default --dry-run",
    "release:dev:no-changelog": "node ./bin/cli.js no-changelog",
    "release:dev:changelog-only": "node ./bin/cli.js changelog-only",
    "release:dev:manual-changelog": "node ./bin/cli.js manual-changelog",
    "release:hotfix": "node ./bin/cli.js hotfix",
    "release:dev:republish": "node ./bin/cli.js republish",
    "release:dev:retry-preflight": "node ./bin/cli.js retry-publish-preflight",
    "release:dev:retry-publish": "node ./bin/cli.js retry-publish",
    "release:update": "node ./bin/cli.js update",
    "release:validate": "node ./bin/cli.js validate",
    "release:validate:allow-dirty": "node ./bin/cli.js validate --allow-dirty",
    "release:check": "node ./bin/cli.js check",
    "build": "tsc -p tsconfig.json",
    "clean": "rimraf dist || rm -rf dist",
    "lint": "biome check --write .",
    "lint:check": "biome check .",
    "test": "vitest run",
    "test:unit": "vitest run tests/unit/*.test.ts",
    "test:unit:watch": "vitest tests/unit/*.test.ts",
    "test:unit:coverage": "vitest run tests/unit/*.test.ts --coverage",
    "test:e2e": "vitest run tests/e2e/*.test.ts --testTimeout=30000",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "test:ui": "vitest --ui",
    "prepublishOnly": "pnpm build && echo 'Running prepublish checks...' && test -f README.md && test -f LICENSE",
    "release:patch": "node ./bin/cli.js default patch",
    "release:minor": "node ./bin/cli.js default minor",
    "release:major": "node ./bin/cli.js default major",
    "release:dry": "node ./bin/cli.js default --dry-run",
    "changelog:update": "node ./bin/cli.js update"
  },
  "peerDependencies": {
    "release-it": "^19.0.0 || ^20.0.0"
  },
  "devDependencies": {
    "@biomejs/biome": "^2.4.13",
    "@release-it-plugins/workspaces": "^5.0.3",
    "@types/node": "^25.9.2",
    "@vitest/coverage-v8": "^4.1.5",
    "nano-staged": "^1.0.2",
    "release-it": "^20.0.1",
    "release-it19": "npm:release-it@^19.2.4",
    "rimraf": "^6.1.3",
    "tsx": "^4.21.0",
    "typescript": "^6.0.3",
    "vite": "^8.0.10",
    "vitest": "^4.1.5"
  },
  "engines": {
    "node": ">=20.19.0"
  },
  "packageManager": "pnpm@10.17.1",
  "pnpm": {
    "overrides": {
      "undici@<6.24.0": ">=6.24.0 <7"
    }
  }
}
