{
  "name": "jcli-dc",
  "version": "1.3.0",
  "description": "Lightweight CLI for Jira Data Center — issue search, sprint management, and more via PAT auth",
  "license": "MIT",
  "author": "Robert Hall <robert.hall@sscinc.com>",
  "type": "commonjs",
  "main": "dist/index.js",
  "bin": {
    "jcli": "dist/index.js"
  },
  "files": [
    "dist/**/*",
    "README.md",
    "LICENSE"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/rjhall90/jcli-dc.git"
  },
  "homepage": "https://github.com/rjhall90/jcli-dc#readme",
  "bugs": {
    "url": "https://github.com/rjhall90/jcli-dc/issues"
  },
  "keywords": [
    "jira",
    "jira-data-center",
    "cli",
    "atlassian",
    "devtools"
  ],
  "engines": {
    "node": ">=18.0.0"
  },
  "publishConfig": {
    "registry": "https://registry.npmjs.org/",
    "provenance": true
  },
  "scripts": {
    "prepare": "git config core.hooksPath .githooks",
    "build": "tsc",
    "typecheck": "tsc --noEmit",
    "start": "node dist/index.js",
    "dev": "tsc && node dist/index.js",
    "prepublishOnly": "npm run build"
  },
  "dependencies": {
    "commander": "14.0.3"
  },
  "devDependencies": {
    "@commitlint/cli": "20.4.3",
    "@commitlint/config-conventional": "20.4.3",
    "@semantic-release/changelog": "6.0.3",
    "@semantic-release/git": "10.0.1",
    "@types/node": "25.3.3",
    "semantic-release": "25.0.3",
    "typescript": "5.9.3"
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  },
  "release": {
    "branches": [
      "main"
    ],
    "plugins": [
      "@semantic-release/commit-analyzer",
      "@semantic-release/release-notes-generator",
      "@semantic-release/changelog",
      "@semantic-release/npm",
      [
        "@semantic-release/git",
        {
          "assets": [
            "CHANGELOG.md",
            "package.json",
            "package-lock.json"
          ],
          "message": "chore(release): ${nextRelease.version} [skip ci]"
        }
      ],
      "@semantic-release/github"
    ]
  }
}
