Fabelous-Autocoder/package.json

61 lines
1.3 KiB
JSON

{
"name": "ollama-coder",
"displayName": "Ollama Coder",
"version": "0.0.1",
"publisher": "10nates",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/10Nates/ollama-coder"
},
"engines": {
"vscode": "^1.73.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./out/extension.js",
"contributes": {
"configuration": {
"title": "Ollama Coder",
"properties": {
"ollama-coder.endpoint": {
"type": "string",
"default": "http://localhost:11434/api/generate",
"description": "The endpoint of the ollama REST API"
},
"ollama-coder.model": {
"type": "string",
"default": "deepseek-coder",
"description": "The model to use for generating completions"
},
"ollama-coder.system-message": {
"type": "string | undefined",
"default": null,
"description": "The system message to use for code completions"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint \"src/**/*.ts\"",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/node": "^16.18.34",
"@types/vscode": "^1.73.0",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.26.0",
"typescript": "^5.3.2"
},
"dependencies": {
"axios": "^1.6.2"
}
}