{
  "name": "issue-linker",
  "version": "1.5.1",
  "description": "A CLI and GitHub Action that validates issue references actually exist in your GitHub repository - not just pattern matching, but real verification of commit messages (#123), branch names (feature/123, 123-fix-bug), PR titles, or any text",
  "keywords": [
    "github",
    "issues",
    "commit",
    "validation",
    "cli",
    "git",
    "branch-name",
    "pr-title",
    "commit-message",
    "github-action",
    "pre-commit",
    "husky",
    "ci-cd",
    "issue-reference",
    "developer-tools",
    "automation"
  ],
  "author": "Suguru Takahashi",
  "license": "MIT",
  "homepage": "https://github.com/sugurutakahashi-1234/issue-linker#readme",
  "repository": {
    "type": "git",
    "url": "https://github.com/sugurutakahashi-1234/issue-linker.git"
  },
  "bugs": {
    "url": "https://github.com/sugurutakahashi-1234/issue-linker/issues"
  },
  "type": "module",
  "bin": {
    "issue-linker": "dist/cli.js"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "exports": {
    ".": {
      "default": "./dist/cli.js"
    }
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "💡": "========== Help Commands ==========",
    "help": "bun run src/cli.ts --help",
    "🔨": "========== Build & Type Check ==========",
    "build": "tsc -p tsconfig.build.json",
    "typecheck": "tsc --noEmit -p tsconfig.json",
    "🧪": "========== Test ==========",
    "test": "bun test",
    "test:quiet": "bun test > /dev/null 2>&1 && echo '✅ Tests passed' || (echo '❌ Tests failed' && exit 1)",
    "🎨": "========== Code Quality ==========",
    "fix": "biome check --write --unsafe .",
    "check": "biome check .",
    "📚": "========== Documentation ==========",
    "docs:deps-graph": "tsg --tsconfig ../../tsconfig.typescript-graph.json --LR --abstraction packages/action --abstraction packages/core --md ../../docs/reports/dependencies/cli.md",
    "📦": "========== Publishing ==========",
    "npm-publish:dry-run": "bun publish --dry-run",
    "npm-publish": "bun publish --access public",
    "🚀": "========== CI & Clean ==========",
    "ci": "bun run fix && bun run check && bun run build && bun run typecheck && bun run test:quiet",
    "clean": "rm -rf dist *.tsbuildinfo"
  },
  "dependencies": {
    "@commander-js/extra-typings": "^14.0.0",
    "@issue-linker/core": "1.5.1",
    "valibot": "^1.1.0"
  },
  "devDependencies": {
    "@biomejs/biome": "^2.2.0",
    "@ysk8hori/typescript-graph": "^0.26.4",
    "typescript": "^5.9.2"
  }
}
