{
  "name": "opencode-copilot-plugin",
  "version": "0.6.4",
  "description": "OpenCode plugin that brings GitHub Copilot's custom instructions and skills system to OpenCode",
  "type": "module",
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "exports": {
    ".": {
      "import": "./dist/index.js"
    }
  },
  "files": [
    "dist",
    "commands"
  ],
  "scripts": {
    "build": "bun build index.ts --outdir dist --target node --external @opencode-ai/plugin --external gray-matter --external picomatch",
    "prepublishOnly": "bun run build",
    "typecheck": "tsc --noEmit",
    "link": "mkdir -p ~/.config/opencode/plugins && rm -f ~/.config/opencode/plugins/opencode-copilot-plugin && ln -s $PWD ~/.config/opencode/plugins/opencode-copilot-plugin && echo 'Linked opencode-copilot-plugin to ~/.config/opencode/plugins/'",
    "unlink": "rm -f ~/.config/opencode/plugins/opencode-copilot-plugin && echo 'Unlinked opencode-copilot-plugin from ~/.config/opencode/plugins/'"
  },
  "keywords": [
    "opencode",
    "opencode-plugin",
    "copilot",
    "github-copilot",
    "instructions",
    "skills",
    "ai",
    "plugin"
  ],
  "author": "Brandon Burrus <brandon@burrus.io>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/brandonburrus/opencode-copilot-plugin.git"
  },
  "homepage": "https://github.com/brandonburrus/opencode-copilot-plugin",
  "bugs": {
    "url": "https://github.com/brandonburrus/opencode-copilot-plugin/issues"
  },
  "peerDependencies": {
    "@opencode-ai/plugin": ">=1.0.0"
  },
  "dependencies": {
    "gray-matter": "^4.0.3",
    "picomatch": "^4.0.4"
  },
  "devDependencies": {
    "@opencode-ai/plugin": "^1.3.2",
    "@types/bun": "latest",
    "@types/picomatch": "^4.0.2",
    "typescript": "^5.8.0"
  }
}
