{
  "name": "@statiolake/coc-github-copilot",
  "version": "2.3.0",
  "description": "GitHub Copilot extension for coc.nvim with inline completion support",
  "main": "lib/index.js",
  "activationEvents": [
    "*"
  ],
  "contributes": {
    "configuration": {
      "type": "object",
      "title": "GitHub Copilot configuration",
      "properties": {
        "copilot.enable": {
          "type": "boolean",
          "default": true,
          "description": "Enable GitHub Copilot"
        },
        "copilot.trace.server": {
          "type": "string",
          "default": "off",
          "enum": [
            "off",
            "messages",
            "trace"
          ],
          "description": "Trace GitHub Copilot Language Server communication"
        }
      }
    },
    "commands": [
      {
        "command": "copilot.signIn",
        "title": "Sign in to GitHub Copilot"
      },
      {
        "command": "copilot.signOut",
        "title": "Sign out from GitHub Copilot"
      },
      {
        "command": "copilot.status",
        "title": "Show GitHub Copilot status"
      },
      {
        "command": "copilot.enable",
        "title": "Enable GitHub Copilot"
      },
      {
        "command": "copilot.disable",
        "title": "Disable GitHub Copilot"
      }
    ]
  },
  "scripts": {
    "build": "tsc",
    "watch": "tsc -w",
    "format": "biome format --write .",
    "format:check": "biome format .",
    "lint": "biome lint . && npm run lint:casts",
    "lint:fix": "biome lint --fix .",
    "check": "biome check .",
    "check:fix": "biome check --fix .",
    "lint:casts": "node scripts/check-type-casts.js",
    "lint:all": "npm run lint && npm run lint:casts",
    "prepare": "husky",
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "keywords": [
    "coc.nvim",
    "github",
    "copilot",
    "completion",
    "ai"
  ],
  "author": "statiolake",
  "license": "MIT",
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/statiolake/coc-github-copilot.git"
  },
  "bugs": {
    "url": "https://github.com/statiolake/coc-github-copilot/issues"
  },
  "homepage": "https://github.com/statiolake/coc-github-copilot#readme",
  "engines": {
    "coc": "^0.0.82"
  },
  "type": "commonjs",
  "devDependencies": {
    "@biomejs/biome": "^2.0.6",
    "@types/node": "^20.0.0",
    "coc.nvim": "^0.0.83-next.9",
    "husky": "^9.1.7",
    "lint-staged": "^16.1.2",
    "typescript": "^5.8.3",
    "@statiolake/coc-lm-api": "^2.0.0"
  },
  "dependencies": {
    "@github/copilot-language-server": "^1.338.0",
    "zod": "^3.25.76"
  },
  "extensionDependencies": [
    "@statiolake/coc-lm-api"
  ],
  "lint-staged": {
    "*.{ts,js,json}": [
      "biome check --fix --no-errors-on-unmatched"
    ]
  }
}
