{
  "name": "@tonyclaw/gitcode-cli",
  "version": "0.1.0",
  "description": "CLI for GitCode REST API — manage repos, PRs, issues, commits, and more from the terminal",
  "author": "tonyclaw",
  "license": "MIT",
  "repository": "https://github.com/tonyclaw/gitcode-cli",
  "type": "module",
  "exports": "./dist/index.js",
  "bin": {
    "gitcode": "./bin/run.js"
  },
  "scripts": {
    "build": "shx rm -rf dist && tsc -b",
    "postinstall": "shx echo 'skip oclif postinstall'",
    "prepack": "bun run build",
    "dev": "bun run build && node bin/run.js"
  },
  "dependencies": {
    "@oclif/core": "^4",
    "shx": "^0.3.4"
  },
  "devDependencies": {
    "@types/bun": "latest",
    "typescript": "^5.8"
  },
  "oclif": {
    "bin": "gitcode",
    "dirname": "gitcode-cli",
    "commands": "./dist/commands",
    "plugins": [],
    "topicSeparator": " "
  }
}
