{
  "name": "@ts-org/jenkins-cli",
  "version": "3.1.5",
  "description": "Jenkins deployment CLI",
  "type": "module",
  "main": "./dist/index.js",
  "bin": {
    "jenkins-cli": "dist/cli.js",
    "jc": "dist/cli.js"
  },
  "keywords": [
    "jenkins",
    "cli",
    "deployment",
    "automation"
  ],
  "author": "Lynn <zmzchn@gmail.com>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://gitee.com/u-web/jenkins-cli.git"
  },
  "homepage": "https://gitee.com/u-web/jenkins-cli",
  "files": [
    "dist",
    "schemas/jenkins.json",
    "docs/images/demo.png"
  ],
  "dependencies": {
    "axios": "^1.13.4",
    "chalk": "^5.6.2",
    "commander": "11.1.0",
    "fast-xml-parser": "^5.3.4",
    "fs-extra": "^11.3.3",
    "inquirer": "9.2.13",
    "jiti": "^2.5.1",
    "js-yaml": "^4.1.1",
    "ora": "^7.0.1"
  },
  "devDependencies": {
    "@types/fs-extra": "^11.0.4",
    "@types/inquirer": "^9.0.9",
    "@types/js-yaml": "^4.0.9",
    "@types/node": "^16.18.126",
    "@typescript-eslint/eslint-plugin": "^6.21.0",
    "@typescript-eslint/parser": "^6.21.0",
    "eslint": "^8.57.0",
    "eslint-config-prettier": "^9.1.0",
    "prettier": "^3.2.5",
    "tsup": "^6.7.0",
    "typescript": "5.3.3"
  },
  "engines": {
    "node": ">=16"
  },
  "publishConfig": {
    "access": "public"
  },
  "directories": {
    "doc": "docs"
  },
  "types": "./dist/index.d.ts",
  "scripts": {
    "build": "tsup",
    "dev": "NODE_ENV=development tsup --watch",
    "link:test": "npm run build && npm link",
    "format": "eslint . --fix && prettier . --write"
  }
}