mirror of
https://github.com/SilasMarvin/lsp-ai.git
synced 2026-01-26 09:44:38 +01:00
49 lines
949 B
JSON
49 lines
949 B
JSON
{
|
|
"name": "lsp-ai",
|
|
"version": "0.1.0",
|
|
"description": "",
|
|
"main": "/out/index.js",
|
|
"scripts": {
|
|
"build": "npx tsc"
|
|
},
|
|
"author": "",
|
|
"license": "MIT",
|
|
"activationEvents": [
|
|
"onLanguage"
|
|
],
|
|
"engines": {
|
|
"vscode": "^1.75.0"
|
|
},
|
|
"contributes": {
|
|
"commands": [
|
|
{
|
|
"command": "lsp-ai.generate",
|
|
"title": "LSP AI Generate"
|
|
},
|
|
{
|
|
"command": "lsp-ai.generateStream",
|
|
"title": "LSP AI Generate Stream"
|
|
}
|
|
],
|
|
"configuration": {
|
|
"title": "Configuration",
|
|
"properties": {
|
|
"configuration.json": {
|
|
"type": "json",
|
|
"default": "{}",
|
|
"description": "JSON configuration for LSP AI"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.11.0",
|
|
"typescript": "^5.3.3"
|
|
},
|
|
"dependencies": {
|
|
"@types/vscode": "^1.85.0",
|
|
"uuid": "^9.0.1",
|
|
"vscode-languageclient": "^9.0.1"
|
|
}
|
|
}
|