-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
178 lines (178 loc) · 4.5 KB
/
package.json
File metadata and controls
178 lines (178 loc) · 4.5 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
{
"name": "localseek",
"displayName": "LocalSeek",
"description": "100% Local, Privacy-First AI Chat for VS Code. Chat with your codebase using true Vector RAG and local LLMs via Ollama, wrapped in a visually stunning UI.",
"version": "1.1.2",
"publisher": "Hariharen",
"private": false,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hariharen9/localseek"
},
"engines": {
"vscode": "^1.96.0"
},
"categories": [
"Machine Learning",
"Education",
"Snippets",
"Formatters",
"Programming Languages"
],
"keywords": [
"ai",
"chat",
"llm",
"ollama",
"local",
"deepseek",
"rag",
"privacy",
"offline",
"copilot",
"llama"
],
"icon": "media/LOCALSEEK-logo.png",
"galleryBanner": {
"color": "#0f172a",
"theme": "dark"
},
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "localseek.openChat",
"title": "Open LocalSeek AI Chat",
"category": "LocalSeek",
"icon": {
"light": "media/sidebar.svg",
"dark": "media/sidebar.svg"
}
},
{
"command": "localseek.sendSelectedCode",
"title": "Send to LocalSeek Chat",
"category": "LocalSeek"
},
{
"command": "localseek.indexKnowledgeBase",
"title": "Index Knowledge Base for RAG",
"category": "LocalSeek"
},
{
"command": "localseek.acceptApply",
"title": "Accept AI Changes",
"category": "LocalSeek",
"icon": "$(check)"
},
{
"command": "localseek.discardApply",
"title": "Discard AI Changes",
"category": "LocalSeek",
"icon": "$(close)"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "localseek-sidebar",
"title": "LocalSeek",
"icon": "media/sidebar.svg"
}
]
},
"views": {
"localseek-sidebar": [
{
"type": "webview",
"id": "localseek-chat",
"name": "LocalSeek AI Chat",
"icon": "media/sidebar.svg",
"contextualTitle": "LocalSeek Chat"
}
]
},
"configuration": {
"title": "LocalSeek",
"properties": {
"localseek.ollamaHost": {
"type": "string",
"default": "http://localhost:11434",
"description": "Ollama API host address"
},
"localseek.rag.knowledgeBasePath": {
"type": "string",
"default": "",
"description": "The absolute path to the directory containing the knowledge base files."
},
"localseek.rag.embeddingModel": {
"type": "string",
"default": "nomic-embed-text",
"description": "The name of the Ollama embedding model to use for RAG."
},
"localseek.rag.chunkSize": {
"type": "number",
"default": 1024,
"description": "The size of the chunks to split the documents into."
},
"localseek.rag.chunkOverlap": {
"type": "number",
"default": 200,
"description": "The number of characters to overlap between chunks."
}
}
},
"resources": [
"media/**"
],
"menus": {
"editor/context": [
{
"command": "localseek.sendSelectedCode",
"when": "editorHasSelection",
"group": "localseek@1"
}
],
"editor/title": [
{
"command": "localseek.acceptApply",
"when": "localseek.diffViewActive",
"group": "navigation@1"
},
{
"command": "localseek.discardApply",
"when": "localseek.diffViewActive",
"group": "navigation@2"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src",
"test": "vscode-test",
"package": "vsce package",
"publish": "vsce publish"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "20.x",
"@types/vscode": "^1.96.0",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1",
"@vscode/vsce": "^2.24.0",
"eslint": "^9.16.0",
"typescript": "^5.7.2"
},
"dependencies": {
"ignore": "^7.0.5",
"ollama": "^0.5.12"
}
}