{
  "name": "@ruan-cat/release-toolkit",
  "version": "0.3.5",
  "description": "基于 changelogen 增强 changesets 工作流的发布工具包，提供语义化提交解析和 GitHub Release 同步功能。",
  "type": "module",
  "main": "./src/index.ts",
  "types": "./src/index.ts",
  "homepage": "https://github.com/ruan-cat/monorepo/tree/main/packages/release-toolkit",
  "bugs": {
    "url": "https://github.com/ruan-cat/monorepo/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ruan-cat/monorepo.git",
    "directory": "packages/release-toolkit"
  },
  "exports": {
    ".": {
      "types": "./src/index.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    },
    "./plugins/changelog-with-changelogen": {
      "types": "./src/plugins/changelog-with-changelogen.ts",
      "import": "./dist/plugins/changelog-with-changelogen.js",
      "require": "./dist/plugins/changelog-with-changelogen.cjs"
    },
    "./src/*": "./src/*",
    "./dist/*": "./dist/*"
  },
  "keywords": [
    "changesets",
    "changelogen",
    "changelog",
    "release",
    "github-release",
    "semantic-commits",
    "conventional-commits",
    "monorepo"
  ],
  "author": {
    "name": "ruan-cat",
    "email": "1219043956@qq.com",
    "url": "https://github.com/ruan-cat"
  },
  "license": "MIT",
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/",
    "tag": "beta"
  },
  "files": [
    "!**/.vercel/**",
    "!**/.vitepress/**",
    "src",
    "dist/**",
    "tsconfig.json",
    "README.md",
    "!src/**/docs/**",
    "!src/**/tests/**",
    "!*.test.*",
    "!src/**/*.md"
  ],
  "dependencies": {
    "@octokit/rest": "^21.1.1",
    "changelogen": "^0.6.2",
    "consola": "^3.4.2",
    "@ruan-cat/commitlint-config": "^4.11.4"
  },
  "devDependencies": {
    "@changesets/types": "^6.1.0",
    "@types/node": "^22.19.15",
    "automd": "^0.4.3",
    "tsup": "^8.5.1",
    "typescript": "^5.9.3"
  },
  "peerDependencies": {
    "@changesets/cli": "^2.29.0",
    "typescript": ">=5"
  },
  "peerDependenciesMeta": {
    "@changesets/cli": {
      "optional": true
    },
    "typescript": {
      "optional": true
    }
  },
  "scripts": {
    "build": "tsup",
    "prebuild": "node ../../scripts/run-automd.cjs",
    "dev": "tsup --watch",
    "test": "tsx src/tests/run-tests.ts",
    "test:build": "pnpm build && node dist/tests/run-tests.js"
  }
}