{
  "name": "@philippdormann/release-it",
  "version": "1.0.0",
  "description": "Generic CLI tool to automate versioning and package publishing-related tasks.",
  "keywords": [
    "build",
    "changelog",
    "commit",
    "distribution",
    "git",
    "github",
    "gitlab",
    "interactive",
    "ci",
    "npm",
    "publish",
    "push",
    "release",
    "release-it",
    "repository",
    "script",
    "shell",
    "tag",
    "tool",
    "version",
    "semver",
    "plugin"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/release-it/release-it.git"
  },
  "homepage": "https://github.com/release-it/release-it#readme",
  "bugs": "https://github.com/release-it/release-it/issues",
  "funding": [
    {
      "type": "github",
      "url": "https://github.com/sponsors/webpro"
    },
    {
      "type": "opencollective",
      "url": "https://opencollective.com/webpro"
    }
  ],
  "bin": {
    "release-it": "bin/release-it.js"
  },
  "type": "module",
  "exports": {
    ".": {
      "import": "./lib/index.js",
      "require": "./lib/index.js",
      "types": "./types/index.d.ts"
    },
    "./package.json": "./package.json",
    "./test/util/index.js": "./test/util/index.js"
  },
  "files": [
    "bin",
    "config",
    "lib",
    "test",
    "schema",
    "types"
  ],
  "types": "./types/index.d.ts",
  "author": {
    "email": "lars@webpro.nl",
    "name": "Lars Kappert"
  },
  "license": "MIT",
  "dependencies": {
    "@iarna/toml": "2.2.5",
    "@octokit/rest": "20.1.1",
    "async-retry": "1.3.3",
    "chalk": "5.3.0",
    "ci-info": "^4.0.0",
    "cosmiconfig": "9.0.0",
    "execa": "8.0.0",
    "git-url-parse": "14.0.0",
    "globby": "14.0.2",
    "inquirer": "9.3.2",
    "issue-parser": "7.0.1",
    "lodash": "4.17.21",
    "mime-types": "2.1.35",
    "new-github-release-url": "2.0.0",
    "open": "10.1.0",
    "ora": "8.1.0",
    "os-name": "5.1.0",
    "proxy-agent": "6.4.0",
    "semver": "7.6.3",
    "shelljs": "0.8.5",
    "update-notifier": "7.3.1",
    "url-join": "5.0.0",
    "wildcard-match": "5.1.3",
    "yargs-parser": "21.1.1"
  },
  "devDependencies": {
    "@eslint/compat": "1.2.0",
    "@eslint/eslintrc": "3.1.0",
    "@eslint/js": "9.12.0",
    "@octokit/request-error": "5.1.0",
    "@types/node": "20.14.10",
    "ava": "6.1.3",
    "eslint": "9.12.0",
    "eslint-config-prettier": "9.1.0",
    "eslint-plugin-ava": "15.0.1",
    "eslint-plugin-import-x": "4.3.1",
    "eslint-plugin-prettier": "5.2.1",
    "fs-monkey": "1.0.6",
    "globals": "15.11.0",
    "installed-check": "9.3.0",
    "knip": "5.33.3",
    "memfs": "4.14.0",
    "mock-stdio": "1.0.3",
    "nock": "14.0.0-beta.8",
    "prettier": "3.3.3",
    "remark-cli": "12.0.1",
    "remark-preset-webpro": "1.1.1",
    "sinon": "19.0.2",
    "strip-ansi": "7.1.0",
    "typescript": "5.6.3"
  },
  "overrides": {
    "pac-resolver": "7.0.1",
    "socks": "2.8.3"
  },
  "engines": {
    "node": "^18.18.0 || ^20.9.0 || >=22.0.0"
  },
  "remarkConfig": {
    "plugins": [
      "preset-webpro"
    ]
  },
  "scripts": {
    "knip": "knip",
    "lint": "eslint lib test",
    "format": "prettier --write eslint.config.mjs \"{lib,test}/**/*.js\"",
    "docs": "remark README.md 'docs/**/*.md' '.github/*.md' -o",
    "test": "ava --no-worker-threads && installed-check",
    "release": "./bin/release-it.js"
  }
}