basic-ai/package.json

40 lines
869 B
JSON

{
"name": "code-api-integration",
"displayName": "Code API Integration",
"description": "Send selected code to API and display response",
"version": "0.0.1",
"engines": {
"vscode": "^1.80.0"
},
"categories": ["Other"],
"activationEvents": [],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "code-api-integration.sendToApi",
"title": "Send Code to API"
},
{
"command": "code-api-integration.pasteLastResponse",
"title": "Paste API Response"
}
],
"views": {
"explorer": [
{
"id": "apiResponseView",
"name": "API Response"
}
]
},
"menus": {
"editor/context": [
{
"command": "code-api-integration.pasteLastResponse",
"group": "navigation"
}
]
}
}
}