voideditor--void
142 行
3.4 KiB
JSON
142 行
3.4 KiB
JSON
{
|
|
"name": "void",
|
|
"displayName": "Void",
|
|
"description": "",
|
|
"version": "0.0.1",
|
|
"engines": {
|
|
"vscode": "^1.89.0"
|
|
},
|
|
"categories": [
|
|
"Other"
|
|
],
|
|
"activationEvents": [],
|
|
"main": "./out/extension.js",
|
|
"contributes": {
|
|
"configuration": {
|
|
"title": "API Keys",
|
|
"properties": {
|
|
"void.whichApi": {
|
|
"type": "string",
|
|
"default": "anthropic",
|
|
"description": "Choose a model to use (anthropic | openai | greptile | ollama)"
|
|
},
|
|
"void.anthropicApiKey": {
|
|
"type": "string",
|
|
"default": "",
|
|
"description": "Anthropic API Key"
|
|
},
|
|
"void.openAIApiKey": {
|
|
"type": "string",
|
|
"default": "",
|
|
"description": "OpenAI API Key"
|
|
},
|
|
"void.greptileApiKey": {
|
|
"type": "string",
|
|
"default": "",
|
|
"description": "Greptile API Key"
|
|
},
|
|
"void.githubPAT": {
|
|
"type": "string",
|
|
"default": "",
|
|
"description": "Greptile - Github PAT (gives Greptile access to your repo)"
|
|
},
|
|
"void.ollamaSettings": {
|
|
"type": "string",
|
|
"default": "",
|
|
"description": "Ollama settings (coming soon...)"
|
|
}
|
|
}
|
|
},
|
|
"commands": [
|
|
{
|
|
"command": "void.ctrl+l",
|
|
"title": "Show Sidebar"
|
|
},
|
|
{
|
|
"command": "void.ctrl+k",
|
|
"title": "Show Selection Lens"
|
|
},
|
|
{
|
|
"command": "void.approveDiff",
|
|
"title": "Approve Diff"
|
|
},
|
|
{
|
|
"command": "void.discardDiff",
|
|
"title": "Discard Diff"
|
|
}
|
|
],
|
|
"viewsContainers": {
|
|
"activitybar": [
|
|
{
|
|
"id": "voidViewContainer",
|
|
"title": "Chat",
|
|
"icon": "$(hubot)"
|
|
}
|
|
]
|
|
},
|
|
"views": {
|
|
"voidViewContainer": [
|
|
{
|
|
"type": "webview",
|
|
"id": "void.viewnumberone",
|
|
"name": "Void"
|
|
}
|
|
]
|
|
},
|
|
"keybindings": [
|
|
{
|
|
"command": "void.ctrl+l",
|
|
"key": "ctrl+l",
|
|
"mac": "cmd+l"
|
|
},
|
|
{
|
|
"command": "void.ctrl+k",
|
|
"key": "ctrl+k",
|
|
"mac": "cmd+k"
|
|
}
|
|
]
|
|
},
|
|
"scripts": {
|
|
"vscode:prepublish": "npm run compile",
|
|
"watch": "tsc -watch -p ./",
|
|
"build": "rimraf dist && node build-tsx.js && node build-css.js",
|
|
"pretest": "tsc -p ./ && eslint src --ext ts",
|
|
"test": "vscode-test"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.9.1",
|
|
"@types/diff": "^5.2.2",
|
|
"@types/jest": "^29.5.12",
|
|
"@types/mocha": "^10.0.8",
|
|
"@types/node": "^22.5.1",
|
|
"@types/react": "^18.3.4",
|
|
"@types/react-dom": "^18.3.0",
|
|
"@types/vscode": "1.92.0",
|
|
"@typescript-eslint/eslint-plugin": "^8.3.0",
|
|
"@typescript-eslint/parser": "^8.3.0",
|
|
"@vscode/test-cli": "^0.0.10",
|
|
"@vscode/test-electron": "2.4.1",
|
|
"autoprefixer": "^10.4.20",
|
|
"diff": "^6.0.0-beta",
|
|
"esbuild": "^0.23.1",
|
|
"eslint": "^8.57.0",
|
|
"eslint-plugin-react": "^7.35.1",
|
|
"eslint-plugin-react-hooks": "^4.6.2",
|
|
"globals": "^15.9.0",
|
|
"marked": "^14.1.0",
|
|
"ollama": "^0.5.8",
|
|
"postcss": "^8.4.41",
|
|
"react": "^18.3.1",
|
|
"react-dom": "^18.3.1",
|
|
"react-markdown": "^9.0.1",
|
|
"rimraf": "^6.0.1",
|
|
"tailwindcss": "^3.4.10",
|
|
"typescript": "5.5.4",
|
|
"typescript-eslint": "^8.3.0"
|
|
},
|
|
"dependencies": {
|
|
"@anthropic-ai/sdk": "^0.27.1",
|
|
"openai": "^4.57.0"
|
|
}
|
|
}
|