-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
306 lines (306 loc) · 8.72 KB
/
package.json
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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
{
"name": "search",
"displayName": "search from code",
"description": "Search right from your code: GitHub, ChatGPT, Microsoft Learn, Google, VS Code workspace (Find in files), dbatools and more.",
"version": "2.2.0",
"icon": "resources/search.png",
"publisher": "dbatools",
"license": "MIT",
"engines": {
"vscode": "^1.95.0"
},
"author": {
"name": "Chrissy LeMaire",
"url": "https://github.com/potatoqualitee"
},
"homepage": "https://github.com/potatoqualitee/vscode-dbatools-search",
"repository": {
"type": "git",
"url": "https://github.com/potatoqualitee/vscode-dbatools-search.git"
},
"bugs": {
"url": "https://github.com/potatoqualitee/vscode-dbatools-search/issues"
},
"categories": [
"Other"
],
"main": "dist/extension.js",
"contributes": {
"menus": {
"editor/context": [
{
"when": "config.search.show.ChatGPT",
"command": "extension.chatGptSearch",
"group": "dbatools"
},
{
"when": "config.search.show.dbatools",
"command": "extension.dbatoolsSearch",
"group": "dbatools"
},
{
"when": "config.search.show.docs",
"command": "extension.docsSearch",
"group": "dbatools"
},
{
"when": "config.search.show.Duckduckgo",
"command": "extension.duckSearch",
"group": "dbatools"
},
{
"when": "config.search.show.GitHub",
"command": "extension.githubSearch",
"group": "dbatools"
},
{
"when": "config.search.show.GitHubRepo && gitOpenRepositoryCount != 0",
"command": "extension.githubRepoSearch",
"group": "dbatools"
},
{
"when": "config.search.show.GitHubAuthor && gitOpenRepositoryCount != 0",
"command": "extension.githubAuthorSearch",
"group": "dbatools"
},
{
"when": "config.search.show.Google",
"command": "extension.googleSearch",
"group": "dbatools"
},
{
"when": "config.search.show.Stackoverflow",
"command": "extension.stackSearch",
"group": "dbatools"
},
{
"when": "config.search.show.Technet",
"command": "extension.technetSearch",
"group": "dbatools"
},
{
"when": "config.search.show.Thwack",
"command": "extension.thwackSearch",
"group": "dbatools"
},
{
"when": "config.search.show.VSCodeAPI",
"command": "extension.vscodeApiSearch",
"group": "dbatools"
},
{
"when": "config.search.show.VSCodeWorkspace",
"command": "extension.vscodeWorkspaceSearch",
"group": "dbatools"
}
]
},
"commands": [
{
"command": "extension.githubSearch",
"title": "Search GitHub"
},
{
"command": "extension.githubRepoSearch",
"title": "Search GitHub Repository"
},
{
"command": "extension.githubAuthorSearch",
"title": "Search GitHub Author"
},
{
"command": "extension.dbatoolsSearch",
"title": "Search dbatools"
},
{
"command": "extension.docsSearch",
"title": "Search Microsoft Docs"
},
{
"command": "extension.duckSearch",
"title": "Search DuckDuckGo"
},
{
"command": "extension.googleSearch",
"title": "Search Google"
},
{
"command": "extension.stackSearch",
"title": "Search StackOverflow"
},
{
"command": "extension.technetSearch",
"title": "Search Microsoft Q&A"
},
{
"command": "extension.thwackSearch",
"title": "Search Thwack"
},
{
"command": "extension.vscodeApiSearch",
"title": "Search VS Code API"
},
{
"command": "extension.vscodeWorkspaceSearch",
"title": "Search this workspace"
},
{
"command": "extension.chatGptSearch",
"title": "Search ChatGPT"
}
],
"configuration": {
"title": "dbatools Search Configuration",
"type": "object",
"properties": {
"search.queryTemplate.GitHub": {
"type": "string",
"default": "https://github.com/search?q=-searchphrase-&type=code",
"description": "Search query for GitHub"
},
"search.queryTemplate.GitHubRepo": {
"type": "string",
"default": "https://github.com/search?q=repo:-repo-+-searchphrase-&type=code",
"description": "Search query for GitHub repository"
},
"search.queryTemplate.GitHubAuthor": {
"type": "string",
"default": "https://github.com/search?q=owner:-author-+-searchphrase-&type=code",
"description": "Search query for GitHub author"
},
"search.limitToLanguage": {
"type": "boolean",
"default": true,
"description": "Automatically limit GitHub searches to the current file's language"
},
"search.queryTemplate.dbatools": {
"type": "string",
"default": "https://www.google.com/search?q=site:dbatools.io+OR+site:docs.dbatools.io+-searchphrase-",
"description": "Search query for dbatools.io"
},
"search.queryTemplate.Docs": {
"type": "string",
"default": "https://learn.microsoft.com/en-us/search/?terms=-searchphrase-",
"description": "Search query for learn.microsoft.com"
},
"search.queryTemplate.Duckduckgo": {
"type": "string",
"default": "https://duckduckgo.com/?q=-searchphrase-",
"description": "Search query for duckduckgo.com"
},
"search.queryTemplate.Google": {
"type": "string",
"default": "https://www.google.com/search?q=-searchphrase-",
"description": "Search query for google.com"
},
"search.queryTemplate.Stackoverflow": {
"type": "string",
"default": "https://stackoverflow.com/search?q=-searchphrase-",
"description": "Search query for stackoverflow.com"
},
"search.queryTemplate.Technet": {
"type": "string",
"default": "https://learn.microsoft.com/en-us/answers/search/?q=-searchphrase-",
"description": "Search query for Microsoft Q&A (formerly TechNet)"
},
"search.queryTemplate.Thwack": {
"type": "string",
"default": "https://thwack.solarwinds.com/search.jspa?q=-searchphrase-",
"description": "Search query for thwack.solarwinds.com"
},
"search.queryTemplate.VSCodeAPI": {
"type": "string",
"default": "https://code.visualstudio.com/search?q=-searchphrase-",
"description": "Search query for code.visualstudio.com"
},
"search.queryTemplate.ChatGPT": {
"type": "string",
"default": "https://chatgpt.com/?hints=search&q=-searchphrase-",
"description": "Search query for ChatGPT"
},
"search.show.GitHub": {
"type": "boolean",
"default": true,
"description": "Enable search context for GitHub"
},
"search.show.GitHubRepo": {
"type": "boolean",
"default": false,
"description": "Enable search context for GitHub repository (only shown in git repositories)"
},
"search.show.GitHubAuthor": {
"type": "boolean",
"default": false,
"description": "Enable search context for GitHub author (only shown in git repositories)"
},
"search.show.dbatools": {
"type": "boolean",
"default": true,
"description": "Enable search context for dbatools"
},
"search.show.docs": {
"type": "boolean",
"default": true,
"description": "Enable search context for docs.microsoft.com"
},
"search.show.Duckduckgo": {
"type": "boolean",
"default": false,
"description": "Enable search context for duckduckgo"
},
"search.show.Google": {
"type": "boolean",
"default": true,
"description": "Enable search context for google"
},
"search.show.Stackoverflow": {
"type": "boolean",
"default": false,
"description": "Enable search context for stackoverflow"
},
"search.show.Technet": {
"type": "boolean",
"default": false,
"description": "Enable search context for technet"
},
"search.show.Thwack": {
"type": "boolean",
"default": false,
"description": "Enable search context for thwack"
},
"search.show.VSCodeAPI": {
"type": "boolean",
"default": false,
"description": "Enable search context for VS Code API"
},
"search.show.VSCodeWorkspace": {
"type": "boolean",
"default": true,
"description": "Enable search context for VS Code Workspace"
},
"search.show.ChatGPT": {
"type": "boolean",
"default": true,
"description": "Enable search context for ChatGPT"
}
}
}
},
"scripts": {
"check-types": "tsc --noEmit",
"compile": "npm run check-types && node esbuild.js",
"package": "npm run check-types && node esbuild.js --production",
"vscode:prepublish": "npm run package",
"watch": "npm-run-all -p watch:*",
"watch:esbuild": "node esbuild.js --watch",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json"
},
"devDependencies": {
"@types/node": "22.x",
"@types/vscode": "^1.95.0",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"esbuild": "^0.24.0",
"typescript": "^5.6.3"
}
}