{
  "name": "releasekit",
  "version": "0.1.0",
  "description": "Opinionated release automation for Node.js and TypeScript projects. Parses Conventional Commits, generates changelogs, bumps versions, creates GitHub releases, and publishes to npm — all from a single config file.",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "bin": {
    "releasekit": "./dist/cli.js"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./config": {
      "types": "./dist/config.d.ts",
      "import": "./dist/config.js"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE",
    "CHANGELOG.md"
  ],
  "scripts": {
    "build": "tsc -p tsconfig.build.json",
    "dev": "tsc -p tsconfig.build.json --watch",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "lint": "tsc --noEmit && eslint src --ext .ts",
    "format": "prettier --write \"src/**/*.ts\"",
    "prepublishOnly": "npm run build && npm test",
    "release": "node ./dist/cli.js release",
    "dry-run": "node ./dist/cli.js release --dry-run"
  },
  "keywords": [
    "release",
    "semver",
    "changelog",
    "conventional-commits",
    "github-releases",
    "npm-publish",
    "automation",
    "devops",
    "cli"
  ],
  "engines": {
    "node": ">=20.0.0"
  },
  "license": "MIT",
  "dependencies": {
    "chalk": "^5.3.0",
    "commander": "^12.1.0"
  },
  "devDependencies": {
    "@types/node": "^22.10.0",
    "@vitest/coverage-v8": "^2.1.0",
    "eslint": "^9.17.0",
    "prettier": "^3.4.0",
    "typescript": "^5.7.0",
    "vite-tsconfig-paths": "^6.1.1",
    "vitest": "^2.1.0"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ignaciolagosruiz/releasekit.git"
  },
  "bugs": {
    "url": "https://github.com/ignaciolagosruiz/releasekit/issues"
  },
  "homepage": "https://github.com/ignaciolagosruiz/releasekit#readme",
  "author": {
    "name": "ignaciolagosruiz",
    "url": "https://github.com/ignaciolagosruiz"
  }
}
