mirror of
https://github.com/larsbaunwall/vscode-copilot-bridge.git
synced 2025-10-05 22:22:59 +00:00
101 lines
2.8 KiB
JSON
101 lines
2.8 KiB
JSON
{
|
|
"private": false,
|
|
"icon": "images/icon.png",
|
|
"name": "copilot-bridge",
|
|
"displayName": "Copilot Bridge",
|
|
"description": "Local OpenAI-compatible chat endpoint (inference) bridging to GitHub Copilot via the VS Code Language Model API.",
|
|
"version": "1.1.0",
|
|
"publisher": "thinkability",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/larsbaunwall/vscode-copilot-bridge.git"
|
|
},
|
|
"author": "larsbaunwall",
|
|
"engines": {
|
|
"vscode": "^1.90.0"
|
|
},
|
|
"license": "Apache License 2.0",
|
|
"extensionKind": [
|
|
"ui"
|
|
],
|
|
"categories": [
|
|
"Other"
|
|
],
|
|
"activationEvents": [
|
|
"onStartupFinished"
|
|
],
|
|
"main": "./out/extension.js",
|
|
"contributes": {
|
|
"commands": [
|
|
{
|
|
"command": "bridge.enable",
|
|
"title": "Copilot Bridge: Enable"
|
|
},
|
|
{
|
|
"command": "bridge.disable",
|
|
"title": "Copilot Bridge: Disable"
|
|
},
|
|
{
|
|
"command": "bridge.status",
|
|
"title": "Copilot Bridge: Status"
|
|
}
|
|
],
|
|
"configuration": {
|
|
"title": "Copilot Bridge",
|
|
"properties": {
|
|
"bridge.enabled": {
|
|
"type": "boolean",
|
|
"default": false,
|
|
"description": "Start the Copilot Bridge automatically when VS Code starts."
|
|
},
|
|
"bridge.host": {
|
|
"type": "string",
|
|
"default": "127.0.0.1",
|
|
"description": "Bind address for the local HTTP server. For security, keep this on loopback."
|
|
},
|
|
"bridge.port": {
|
|
"type": "number",
|
|
"default": 0,
|
|
"description": "Port for the local HTTP server. 0 picks a random ephemeral port."
|
|
},
|
|
"bridge.token": {
|
|
"type": "string",
|
|
"default": "",
|
|
"description": "Optional bearer token required in Authorization header. Leave empty to disable."
|
|
},
|
|
"bridge.historyWindow": {
|
|
"type": "number",
|
|
"default": 3,
|
|
"minimum": 0,
|
|
"description": "Number of user/assistant turns to include (system message is kept separately)."
|
|
},
|
|
"bridge.maxConcurrent": {
|
|
"type": "number",
|
|
"default": 1,
|
|
"minimum": 1,
|
|
"description": "Maximum concurrent /v1/chat/completions requests. Excess requests return 429."
|
|
},
|
|
"bridge.verbose": {
|
|
"type": "boolean",
|
|
"default": false,
|
|
"description": "Verbose logging to the 'Copilot Bridge' output channel."
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"scripts": {
|
|
"compile": "tsc -p .",
|
|
"watch": "tsc -w -p .",
|
|
"vscode:prepublish": "npm run compile",
|
|
"package": "npx vsce package"
|
|
},
|
|
"dependencies": {
|
|
"polka": "^0.5.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.10.0",
|
|
"@types/vscode": "^1.90.0",
|
|
"@vscode/vsce": "^3.6.0",
|
|
"typescript": "^5.4.0"
|
|
}
|
|
}
|