-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.62 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "autocompletion-vscode",
"displayName": "Autocompletion",
"description": "Next edit suggestions for VS Code using OpenAI-compatible APIs",
"version": "0.1.0",
"publisher": "neabyte",
"author": {
"name": "NeaByteLab",
"email": "me@neabyte.com",
"url": "https://github.com/NeaByteLab"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/NeaByteLab/Autocompletion-VSCode.git"
},
"type": "module",
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other"
],
"main": "./out/extension.js",
"activationEvents": [
"onStartupFinished"
],
"enabledApiProposals": [
"inlineCompletionsAdditions"
],
"scripts": {
"vscode:prepublish": "deno task bundle",
"vscode:build": "npx vsce package",
"vscode:install": "npm run vscode:build && code --install-extension $(ls *.vsix | head -1)",
"vscode:uninstall": "code --uninstall-extension neabyte.dev-suite",
"vscode:update": "npm run vscode:uninstall && npm run vscode:build && npm run vscode:install && npm run vscode:clean",
"vscode:clean": "rm -rf dist/ && rm -f *.vsix"
},
"contributes": {
"configuration": {
"title": "Autocompletion",
"properties": {
"autocompletion.enabled": {
"type": "boolean",
"default": true,
"description": "Enable or disable inline completion suggestions"
},
"autocompletion.api.url": {
"type": "string",
"default": "https://localhost:1234/v1/responses",
"description": "API endpoint URL for completion suggestions"
},
"autocompletion.api.model": {
"type": "string",
"default": "",
"description": "Model name for completion requests (e.g. deepseek-v4-flash)"
}
}
},
"commands": [
{
"command": "autocompletion.show",
"title": "Autocompletion: Show Options"
},
{
"command": "autocompletion.setApiUrl",
"title": "Autocompletion: Set API URL"
},
{
"command": "autocompletion.setApiModel",
"title": "Autocompletion: Set Model"
},
{
"command": "autocompletion.setApiKey",
"title": "Autocompletion: Set API Key"
},
{
"command": "autocompletion.clearApiKey",
"title": "Autocompletion: Clear API Key"
},
{
"command": "autocompletion.openSettings",
"title": "Autocompletion: Open Settings"
}
],
"keybindings": [
{
"command": "autocompletion.openSettings",
"key": "ctrl+alt+,",
"mac": "cmd+alt+,"
}
]
}
}