{
  "name": "changesets-changelog-clean",
  "version": "1.4.0",
  "description": "A clean changelog entry generator with Github support for `changesets`",
  "keywords": [
    "changelog",
    "changesets",
    "versioning"
  ],
  "homepage": "https://github.com/duniul/changesets-changelog-clean",
  "bugs": "https://github.com/duniul/changesets-changelog-clean/issues",
  "license": "MIT",
  "author": "Daniel Grefberg <hello@danielgrefberg.com>",
  "repository": "https://github.com/duniul/changesets-changelog-clean.git",
  "files": [
    "dist",
    "README.md"
  ],
  "type": "module",
  "main": "dist/index.cjs",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    }
  },
  "dependencies": {
    "@changesets/get-github-info": "^0.8.0",
    "@changesets/types": "^6.1.0"
  },
  "devDependencies": {
    "@changesets/cli": "2.31.0",
    "@types/node": "20.19.41",
    "oxfmt": "0.52.0",
    "oxlint": "1.67.0",
    "oxlint-tsgolint": "0.23.0",
    "tsdown": "0.22.1",
    "typescript": "6.0.3",
    "vitest": "4.1.7"
  },
  "scripts": {
    "build": "tsdown",
    "dev": "tsdown --watch",
    "changeset:status": "changeset status",
    "changeset:version": "changeset version",
    "changeset": "changeset",
    "stylecheck": "oxfmt --check src && oxlint src",
    "typecheck": "tsc --noEmit",
    "format": "oxfmt --write .",
    "lint": "oxlint .",
    "lint:fix": "oxlint --fix .",
    "test": "vitest",
    "release": "changeset publish",
    "version": "changeset version"
  }
}