-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.03 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 3.03 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "lmstudio-assistant",
"displayName": "LM Studio Assistant",
"description": "VS Code assistant powered by LM Studio with workspace tools for reading, searching, and editing files.",
"version": "0.0.2",
"publisher": "elliotone",
"icon": "media/lmstudio.png",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ElliotOne/lmstudio-assistant-vscode.git"
},
"homepage": "https://github.com/ElliotOne/lmstudio-assistant-vscode#readme",
"bugs": {
"url": "https://github.com/ElliotOne/lmstudio-assistant-vscode/issues"
},
"keywords": [
"lm-studio",
"vscode",
"assistant",
"ai",
"local-llm"
],
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other",
"Programming Languages"
],
"activationEvents": [
"onCommand:lmstudioAssistant.ask",
"onCommand:lmstudioAssistant.openChat",
"onView:lmstudioAssistant.chatView"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "lmstudioAssistant.ask",
"title": "LM Studio Assistant: Ask"
},
{
"command": "lmstudioAssistant.openChat",
"title": "LM Studio Assistant: Open Chat"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "lmstudioAssistant",
"title": "LM Studio",
"icon": "media/lmstudio.png"
}
]
},
"views": {
"lmstudioAssistant": [
{
"id": "lmstudioAssistant.chatView",
"name": "Assistant Chat",
"type": "webview"
}
]
},
"configuration": {
"title": "LM Studio Assistant",
"properties": {
"lmstudioAssistant.baseUrl": {
"type": "string",
"default": "http://localhost:1234/v1",
"description": "LM Studio OpenAI-compatible base URL"
},
"lmstudioAssistant.model": {
"type": "string",
"default": "local-model",
"description": "Model name as shown by LM Studio server"
},
"lmstudioAssistant.maxToolTurns": {
"type": "number",
"default": 6,
"minimum": 1,
"description": "Maximum tool-call turns per request"
},
"lmstudioAssistant.maxSearchResults": {
"type": "number",
"default": 50,
"minimum": 1,
"description": "Maximum search results to return"
},
"lmstudioAssistant.maxFileBytes": {
"type": "number",
"default": 200000,
"minimum": 1000,
"description": "Maximum bytes to read per file"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"package": "vsce package",
"publish:patch": "vsce publish patch",
"publish:minor": "vsce publish minor",
"publish:major": "vsce publish major"
},
"devDependencies": {
"@types/node": "^20.11.0",
"@types/vscode": "^1.85.0",
"@vscode/vsce": "^3.2.2",
"typescript": "^5.3.3"
}
}