{
  "name": "@favware/npm-deprecate",
  "version": "2.0.0",
  "description": "Programmatically deprecate your NPM published packages",
  "author": "@favware",
  "license": "MIT",
  "type": "module",
  "main": "dist/cli.js",
  "bin": {
    "nd": "./dist/cli.js",
    "npm-deprecate": "./dist/cli.js"
  },
  "imports": {
    "#commands/*": "./dist/commands/*.js",
    "#lib/*": "./dist/lib/*.js",
    "#root/*": "./dist/*.js"
  },
  "sideEffects": "false",
  "files": [
    "dist/**/*.js"
  ],
  "scripts": {
    "lint": "eslint src --ext ts --fix",
    "prettier": "prettier --ignore-path=.prettierignore",
    "format": "prettier --write \"src/**/*.ts\"",
    "update": "yarn upgrade-interactive --latest",
    "clean": "node scripts/clean.mjs",
    "build": "tsc -b src",
    "watch": "tsc -b src -w",
    "bump": "cliff-jumper",
    "check-update": "cliff-jumper --dry-run",
    "prepack": "yarn build"
  },
  "dependencies": {
    "@sapphire/fetch": "^3.0.3",
    "@sapphire/utilities": "^3.17.0",
    "colorette": "^2.0.20",
    "commander": "^12.1.0",
    "js-yaml": "^4.1.0",
    "npm-package-arg": "^12.0.0",
    "npm-registry-fetch": "^18.0.2",
    "picomatch": "^4.0.2"
  },
  "devDependencies": {
    "@commitlint/cli": "^19.5.0",
    "@commitlint/config-conventional": "^19.5.0",
    "@favware/cliff-jumper": "^4.1.0",
    "@sapphire/eslint-config": "^5.0.5",
    "@sapphire/prettier-config": "^2.0.0",
    "@sapphire/ts-config": "^5.0.1",
    "@types/js-yaml": "^4.0.9",
    "@types/node": "^20.16.13",
    "@types/node-fetch": "^2.6.11",
    "@types/npm-package-arg": "^6.1.4",
    "@types/npm-registry-fetch": "^8.0.7",
    "@types/picomatch": "^3.0.1",
    "@typescript-eslint/eslint-plugin": "^7.18.0",
    "@typescript-eslint/parser": "^7.18.0",
    "cz-conventional-changelog": "^3.3.0",
    "eslint": "^8.57.1",
    "eslint-config-prettier": "^9.1.0",
    "eslint-plugin-prettier": "^5.2.1",
    "lint-staged": "^15.2.10",
    "prettier": "^3.3.3",
    "typescript": "^5.6.3"
  },
  "resolutions": {
    "acorn": "^8.12.1",
    "ansi-regex": "^5.0.1",
    "minimist": "^1.2.8"
  },
  "engines": {
    "node": ">=18"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/favware/npm-deprecate.git"
  },
  "bugs": {
    "url": "https://github.com/favware/npm-deprecate/issues"
  },
  "homepage": "https://github.com/favware/npm-deprecate",
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  },
  "lint-staged": {
    "*": "prettier --ignore-unknown --write",
    "*.{mjs,js,ts}": "eslint --fix --ext mjs,js,ts"
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  },
  "publishConfig": {
    "access": "public"
  },
  "eslintConfig": {
    "extends": "@sapphire"
  },
  "packageManager": "yarn@4.5.0"
}