93m1n1gpt/package.json

83 lines
1.9 KiB
JSON

{
"name": "93m1n1gpt",
"displayName": "93m1n1gpt",
"description": "Agent flow BYOLLM pair programming assistint ",
"publisher": "C4B3Rstudios",
"version": "0.0.1",
"engines": {
"vscode": "^1.97.0"
},
"categories": [
"Other"
],
"activationEvents": [],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "C4B3Rstudios.93m1n1gpt",
"title": "Open 93m1n1GPT",
"category": "93m1n1GPT"
},
{
"command": "C4B3Rstudios.93m1n1gpt.showLLMSelector",
"title": "93m1n1GPT: Show LLM Selector"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "93m1n1gpt-sidebar",
"title": "93m1n1GPT",
"icon": "resources/icon.svg"
}
]
},
"views": {
"93m1n1gpt-sidebar": [
{
"type": "webview",
"id": "C4B3Rstudios.93m1n1gpt",
"name": "93m1n1GPT Chat",
"icon": "resources/icon.svg"
}
]
},
"configuration": {
"title": "93m1n1GPT",
"properties": {
"93m1n1gpt.selectedModel": {
"type": "string",
"default": "llama3.2:3b",
"description": "Selected LLM model to use"
},
"93m1n1gpt.apiUrl": {
"type": "string",
"default": "http://localhost:11434",
"description": "Ollama API URL"
}
}
}
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "vscode-test"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "20.x",
"@types/vscode": "^1.97.0",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1",
"eslint": "^9.19.0"
},
"dependencies": {
"@langchain/community": "^0.3.29",
"@langchain/core": "^0.3.39",
"@langchain/ollama": "^0.2.0",
"highlight.js": "^11.11.1",
"markdown-it": "^14.1.0",
"marked": "^15.0.7"
}
}