{
  "name": "relizy",
  "type": "module",
  "version": "1.2.1",
  "description": "Changelogen adapter for monorepo management with unified and independent versioning",
  "author": "Louis Mazel <me@loicmazuel.com>",
  "license": "MIT",
  "homepage": "https://louismazel.github.io/relizy",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/LouisMazel/relizy.git"
  },
  "bugs": "https://github.com/LouisMazel/relizy/issues",
  "keywords": [
    "changelogen",
    "monorepo",
    "changelog",
    "release",
    "versioning",
    "lerna",
    "semantic-release",
    "conventional-commits",
    "turbo",
    "git-tag",
    "npm-publish",
    "version-bump",
    "changesets",
    "release-automation"
  ],
  "sideEffects": false,
  "publishConfig": {
    "access": "public"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs"
    },
    "./cli": "./bin/relizy.mjs",
    "./types": "./dist/index.d.ts"
  },
  "main": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "bin": {
    "relizy": "bin/relizy.mjs",
    "rly": "bin/relizy.mjs"
  },
  "files": [
    "LICENSE",
    "README.md",
    "bin",
    "dist"
  ],
  "engines": {
    "node": ">=20.0.0"
  },
  "peerDependencies": {
    "@slack/web-api": "^7.0.0",
    "twitter-api-v2": "^1.20.0"
  },
  "peerDependenciesMeta": {
    "@slack/web-api": {
      "optional": true
    },
    "twitter-api-v2": {
      "optional": true
    }
  },
  "dependencies": {
    "@inquirer/prompts": "^8.3.0",
    "@maz-ui/node": "4.6.1",
    "@maz-ui/utils": "^4.7.4",
    "c12": "^3.3.3",
    "changelogen": "^0.6.2",
    "commander": "^14.0.3",
    "convert-gitmoji": "^0.1.5",
    "defu": "6.1.4",
    "fast-glob": "^3.3.2",
    "node-fetch-native": "^1.6.7",
    "semver": "^7.7.4"
  },
  "devDependencies": {
    "@commitlint/cli": "^20.4.4",
    "@commitlint/config-conventional": "20.4.4",
    "@commitlint/cz-commitlint": "^20.4.4",
    "@commitlint/types": "^20.4.4",
    "@maz-ui/eslint-config": "^4.7.0",
    "@slack/web-api": "7.15.0",
    "@types/node": "^25.5.0",
    "@types/semver": "^7.7.1",
    "@vitest/coverage-v8": "^4.1.0",
    "cross-env": "10.1.0",
    "eslint": "^9.39.2",
    "husky": "9.1.7",
    "jiti": "2.6.1",
    "lint-staged": "^16.4.0",
    "memfs": "^4.56.11",
    "tsx": "^4.21.0",
    "twitter-api-v2": "^1.29.0",
    "typescript": "^5.9.3",
    "unbuild": "^3.6.1",
    "vitest": "^4.1.0"
  },
  "lint-staged": {
    "*.{js,jsx,ts,tsx,mjs,mts,cjs,md,yml,json}": [
      "eslint --fix"
    ]
  },
  "scripts": {
    "build": "unbuild",
    "dev": "unbuild --stub",
    "relizy": "tsx src/cli.ts",
    "rly": "tsx src/cli.ts",
    "typecheck": "tsc --noEmit --skipLibCheck",
    "lint": "cross-env NODE_ENV=production eslint .",
    "lint:fix": "cross-env NODE_ENV=production eslint . --fix",
    "lint:all": "pnpm lint && pnpm lint:docs",
    "lint:fix:all": "pnpm lint:fix && pnpm lint:docs:fix",
    "lint:docs": "cross-env NODE_ENV=production pnpm -F docs lint",
    "lint:docs:fix": "pnpm lint:docs --fix",
    "test:unit": "vitest run",
    "test:unit:watch": "vitest watch",
    "test:unit:coverage": "vitest run --coverage",
    "pre-commit": "lint-staged"
  }
}