{
  "name": "@changesets/ghcommit",
  "version": "3.0.0",
  "description": "Directly change files on github using the github API, to support GPG signing",
  "keywords": [
    "actions",
    "git",
    "github",
    "gpg"
  ],
  "license": "MIT",
  "author": {
    "name": "Sam Lanning",
    "url": "https://samlanning.com"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/changesets/ghcommit.git"
  },
  "files": [
    "dist"
  ],
  "type": "module",
  "sideEffects": false,
  "exports": {
    ".": {
      "types": "./dist/index-node.d.mts",
      "browser": "./dist/index-browser.mjs",
      "default": "./dist/index-node.mjs"
    },
    "./package.json": "./package.json"
  },
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "tinyexec": "^1.2.4"
  },
  "devDependencies": {
    "@actions/github": "^9.0.0",
    "@changesets/changelog-github": "^0.7.0",
    "@changesets/cli": "^2.31.0",
    "@graphql-codegen/cli": "^7.1.2",
    "@tsconfig/node22": "^22.0.5",
    "@types/node": "^25.9.1",
    "fs-fixture": "^2.14.0",
    "oxfmt": "^0.53.0",
    "oxlint": "^1.68.0",
    "oxlint-tsgolint": "^0.23.0",
    "publint": "^0.3.21",
    "tsdown": "^0.22.1",
    "typescript": "^6.0.3",
    "vitest": "^4.1.8"
  },
  "engines": {
    "node": "^22.11 || ^24 || >=26"
  },
  "scripts": {
    "build": "pnpm codegen:github && tsdown",
    "codegen:github": "graphql-codegen --config src/github/codegen.ts",
    "typecheck": "tsc",
    "format": "oxfmt --check",
    "format:fix": "oxfmt",
    "lint": "oxlint",
    "test:unit": "vitest",
    "test:integration": "vitest -c vitest.integration.config.ts",
    "version-packages": "changeset version && pnpm format:fix",
    "release": "pnpm build && changeset publish"
  }
}