{
  "name": "claude-provider-switcher",
  "version": "1.0.2",
  "description": "Claude Code API provider switcher - Switch between different AI providers for Claude Code",
  "main": "dist/index.js",
  "bin": {
    "ccx": "bin/ccx"
  },
  "scripts": {
    "build": "tsc",
    "dev": "ts-node src/index.ts",
    "start": "node dist/index.js",
    "test": "jest",
    "test:coverage": "jest --coverage",
    "test:watch": "jest --watch",
    "lint": "eslint src --ext .ts",
    "lint:fix": "eslint src --ext .ts --fix",
    "pkg": "pkg . --out-path dist/bin"
  },
  "keywords": [
    "claude",
    "api",
    "provider",
    "switcher",
    "cli",
    "anthropic",
    "ai",
    "provider-switcher"
  ],
  "author": "Your Name <your.email@example.com>",
  "repository": {
    "type": "git",
    "url": "https://github.com/your-username/ccx-cli.git"
  },
  "license": "MIT",
  "dependencies": {
    "axios": "^1.5.0",
    "chalk": "^4.1.2",
    "commander": "^11.0.0",
    "fs-extra": "^11.1.1",
    "inquirer": "^8.2.6",
    "json5": "^2.2.3"
  },
  "devDependencies": {
    "@types/fs-extra": "^11.0.4",
    "@types/inquirer": "^9.0.3",
    "@types/jest": "^29.5.5",
    "@types/node": "^20.8.0",
    "@typescript-eslint/eslint-plugin": "^6.21.0",
    "@typescript-eslint/parser": "^6.21.0",
    "eslint": "^8.50.0",
    "jest": "^29.7.0",
    "pkg": "^5.8.1",
    "ts-jest": "^29.1.1",
    "ts-node": "^10.9.1",
    "typescript": "^5.2.2"
  },
  "engines": {
    "node": ">=16.0.0"
  },
  "pkg": {
    "targets": [
      "node16-macos-x64",
      "node16-linux-x64",
      "node16-win-x64"
    ],
    "outputPath": "dist/bin"
  }
}
