{
  "name": "ghc-tunnel",
  "version": "1.0.13",
  "description": "GitHub Copilot API Proxy - Provides OpenAI and Anthropic compatible endpoints via GitHub Copilot",
  "main": "dist/index.js",
  "bin": {
    "ghc-tunnel": "dist/index.js"
  },
  "files": [
    "dist",
    "public"
  ],
  "scripts": {
    "test": "node --import tsx --test tests/*.test.ts",
    "typecheck": "tsc",
    "build": "tsc && node esbuild.config.mjs",
    "start": "node dist/index.js",
    "dev": "tsx src/index.ts",
    "prepublishOnly": "npm run build"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "keywords": [
    "github",
    "copilot",
    "proxy",
    "openai",
    "anthropic",
    "api",
    "claude"
  ],
  "license": "MIT",
  "dependencies": {
    "express": "^4.21.0",
    "js-yaml": "^4.2.0"
  },
  "devDependencies": {
    "@types/express": "^5.0.0",
    "@types/js-yaml": "^4.0.9",
    "@types/node": "^22.0.0",
    "esbuild": "^0.28.1",
    "tsx": "^4.22.4",
    "typescript": "^5.6.0"
  },
  "overrides": {
    "qs": "6.15.2"
  }
}
