{
  "name": "@eighty4/changelog",
  "version": "0.0.8",
  "type": "module",
  "author": "Adam McKee <adam.be.g84d@gmail.com>",
  "repository": "https://github.com/eighty4/changelog",
  "homepage": "https://github.com/eighty4/changelog",
  "keywords": [
    "devops",
    "cicd",
    "changelogs",
    "CHANGELOG.md",
    "releases"
  ],
  "description": "Changelog utilities for CICD",
  "license": "BSD-2-Clause",
  "bin": {
    "changelog": "./lib_js/bin.js"
  },
  "exports": {
    ".": {
      "bun": "./lib/api.ts",
      "node": "./lib_js/api.js",
      "types": "./lib_types/api.d.ts"
    }
  },
  "dependencies": {},
  "devDependencies": {
    "@types/node": "^22.15.21",
    "prettier": "^3.5.3",
    "typescript": "^5.8.3"
  },
  "files": [
    "lib/*",
    "!lib/*.spec.ts",
    "lib_js/*",
    "lib_types/*",
    "tsconfig.json",
    "CHANGELOG.md"
  ],
  "scripts": {
    "build": "tsc",
    "devcheck": "pnpm fmt && pnpm build && pnpm test",
    "fmt": "prettier --write .",
    "fmtcheck": "prettier --check .",
    "test": "pnpm test:unit && pnpm test:gold",
    "test:unit": "node --test lib/**/*.spec.ts",
    "test:gold": "cd gold && ./verify.sh",
    "test:gold:update": "cd gold && ./update.sh",
    "typecheck": "tsc --noEmit"
  }
}