{
  "name": "custompatch",
  "version": "1.1.12",
  "description": "Tool for patching buggy NPM packages instead of forking them",
  "author": "IVO GELOV",
  "private": false,
  "license": "BSD-3-Clause",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/tmcdos/custompatch.git"
  },
  "bin": {
    "custompatch": "index.mjs"
  },
  "scripts": {
    "bump": "npm version patch",
    "release": "npm run bump && npm publish",
    "build": "esbuild ./src/index.js --bundle --platform=node --format=esm --target=es2020,node16 --packages=external --outfile=index.mjs",
    "prepare": "npm run build"
  },
  "engines": {
    "node": ">= 16.20.0",
    "npm": ">= 9.6.7"
  },
  "keywords": [
    "patching",
    "buggy",
    "packages"
  ],
  "dependencies": {
    "commander": "^12.1.0",
    "diff": "^8.0.2",
    "pacote": "^18.0.6"
  },
  "devDependencies": {
    "esbuild": "0.24.2"
  }
}
