{
  "name": "copilot-custom-endpoint",
  "version": "3.1.2",
  "description": "Local proxies for VS Code Copilot custom endpoints — Kimi K2, Qwen 3.x & MiMo V2.5",
  "license": "MIT",
  "type": "module",
  "bin": {
    "copilot-custom-endpoint": "cli.mjs",
    "copilot-custom-endpoint-kimi": "proxy/kimi-proxy.mjs",
    "copilot-custom-endpoint-qwen": "proxy/qwen-proxy.mjs",
    "copilot-custom-endpoint-mimo": "proxy/mimo-proxy.mjs"
  },
  "files": [
    "README.md",
    "docs/example-config.md",
    "docs/pricing.md",
    "docs/models/",
    "cli.mjs",
    "lib/",
    "proxy/"
  ],
  "scripts": {
    "proxy": "concurrently --names kimi,qwen,mimo --prefix-colors cyan,green,magenta \"npm run proxy:kimi\" \"npm run proxy:qwen\" \"npm run proxy:mimo\"",
    "proxy:kimi": "node proxy/kimi-proxy.mjs",
    "proxy:qwen": "node proxy/qwen-proxy.mjs",
    "proxy:mimo": "node proxy/mimo-proxy.mjs",
    "clean:logs": "node -e \"import{rmSync}from'node:fs';rmSync('debug_log',{recursive:true,force:true});console.log('debug_log/ removed')\"",
    "test": "node --test tests/**/*.test.mjs",
    "lint": "eslint .",
    "lint:fix": "eslint . --fix",
    "format": "prettier --check .",
    "format:fix": "prettier --write .",
    "lf": "npm run lint && npm run format:fix"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/tugudush/copilot-custom-endpoints.git"
  },
  "keywords": [
    "copilot",
    "vscode",
    "custom-endpoint",
    "kimi",
    "qwen",
    "moonshot",
    "dashscope",
    "proxy"
  ],
  "devDependencies": {
    "@eslint/js": "^10.0.1",
    "concurrently": "^10.0.1",
    "eslint": "^10.4.1",
    "eslint-config-prettier": "^10.1.8",
    "globals": "^17.6.0",
    "prettier": "^3.8.3"
  },
  "dependencies": {
    "dotenv": "^17.4.2"
  }
}
