-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
283 lines (283 loc) · 6.83 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
{
"name": "qtvsctools",
"displayName": "Qt tools",
"description": "Qt tools support for VSCode",
"version": "0.11.0",
"publisher": "tonka3000",
"preview": true,
"license": "MIT",
"keywords": [
"qt",
"tools",
"c++",
"native"
],
"capabilities": {
"virtualWorkspaces": {
"supported": false,
"description": "Qt tools doesn't support remote repositories."
}
},
"author": {
"name": "tonka3100"
},
"engines": {
"vscode": "^1.41.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:qttools.currentfileindesigner",
"onCommand:qttools.launchdesigneronly",
"onCommand:qttools.launchassistant",
"onCommand:qttools.launchonlinehelp",
"onCommand:qttools.searchonlinehelp",
"onCommand:qttools.launchcreatoronly",
"onCommand:qttools.workspaceincreator",
"onCommand:qttools.currentfileincreator",
"workspaceContains:**/CMakeLists.txt",
"workspaceContains:.vscode/cmake-kits.json"
],
"main": "./dist/extension",
"contributes": {
"commands": [
{
"command": "qttools.currentfileindesigner",
"title": "Edit in Qt Designer",
"category": "Qt"
},
{
"command": "qttools.launchdesigneronly",
"title": "Launch Qt Designer",
"category": "Qt"
},
{
"command": "qttools.launchassistant",
"title": "Launch Qt Assistant",
"category": "Qt"
},
{
"command": "qttools.launchonlinehelp",
"title": "Online help",
"category": "Qt"
},
{
"command": "qttools.searchonlinehelp",
"title": "Search Online help",
"category": "Qt"
},
{
"command": "qttools.scanqtkit",
"title": "Scan for Qt Kit",
"category": "Qt"
},
{
"command": "qttools.launchcreatoronly",
"title": "Launch Qt Creator",
"category": "Qt"
},
{
"command": "qttools.workspaceincreator",
"title": "Launch workspace in Qt Creator",
"category": "Qt"
},
{
"command": "qttools.currentfileincreator",
"title": "Edit in Qt Creator",
"category": "Qt"
},
{
"command": "qttools.removenatviscache",
"title": "Delete natvis download cache",
"category": "Qt"
},
{
"command": "qttools.launchvisualstudio",
"title": "Launch in Visual Studio",
"category": "Qt"
}
],
"menus": {
"commandPalette": [
{
"command": "qttools.currentfileindesigner",
"when": "resourceExtname == .ui"
},
{
"command": "qttools.currentfileincreator",
"when": "resourceExtname == .qrc || resourceExtname == .ui"
},
{
"command": "qttools.launchvisualstudio",
"when": "isWindows"
}
],
"explorer/context": [
{
"command": "qttools.currentfileindesigner",
"when": "resourceExtname == .ui",
"group": "qttools@1"
},
{
"command": "qttools.currentfileincreator",
"when": "resourceExtname == .qrc || resourceExtname == .ui",
"group": "qttools@1"
}
],
"editor/title": [
{
"command": "qttools.currentfileindesigner",
"when": "resourceExtname == .ui",
"group": "qttools@1"
},
{
"command": "qttools.currentfileincreator",
"when": "resourceExtname == .qrc || resourceExtname == .ui",
"group": "qttools@1"
}
],
"editor/context": [
{
"command": "qttools.currentfileindesigner",
"when": "resourceExtname == .ui",
"group": "qttools@1"
},
{
"command": "qttools.currentfileincreator",
"when": "resourceExtname == .qrc || resourceExtname == .ui",
"group": "qttools@1"
}
]
},
"configuration": [
{
"type": "object",
"title": "Qt",
"properties": {
"qttools.extraSearchDirectories": {
"type": [
"array"
],
"default": [],
"description": "Extra search directories for Qt tools. Required when the Qt tools like designer are not installed next to qmake",
"scope": "resource"
},
"qttools.injectNatvisFile": {
"type": "boolean",
"default": true,
"description": "automatically inject the natvis.xml of Qt into existing launch.json entries",
"scope": "resource"
},
"qttools.useExternalBrowser": {
"type": "boolean",
"default": false,
"description": "use external browser for online help",
"scope": "resource"
},
"qttools.visualizerFile": {
"type": "string",
"default": "",
"description": "filepath or url to a natvis.xml file which will be used instead of the bundled one. You can use e.g. `https://github.com/qt-labs/vstools/blob/dev/QtVsTools.Package/qt5.natvis.xml` when you want to use the file from Qt Visual Studio tools"
},
"qttools.searchMode": {
"type": "string",
"default": "cmake",
"enum": [
"cmake",
"path"
],
"description": "Qt search mode",
"enumDescriptions": [
"Search Qt based on cmake. The cmake project needs to be configured before Qt can be found",
"Search Qt in the PATH variable"
]
},
"qttools.creator": {
"type": "string",
"default": "",
"description": "absolute filepath to the Qt Creator executable"
},
"qttools.loglevel": {
"type": "string",
"default": "none",
"description": "set the loglevel",
"enum": [
"none",
"debug",
"info",
"warning",
"error",
"critical"
]
}
}
}
],
"languages": [
{
"id": "css",
"extensions": [
".qss"
]
},
{
"id": "xml",
"extensions": [
".ui",
".qrc"
]
}
]
},
"scripts": {
"vscode:prepublish": "webpack --mode production",
"webpack-prod": "webpack --mode production",
"webpack": "webpack --mode development",
"webpack-dev": "webpack --mode development --watch",
"test-compile": "tsc -p ./ && npm run webpack",
"webpack-watch": "webpack --mode development --watch",
"pretest": "npm run test-compile",
"test": "node ./out/test/runTest.js",
"package": "npx vsce package",
"publish": "npx vsce publish",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/download": "^6.2.4",
"@types/glob": "^7.1.3",
"@types/mocha": "^5.2.7",
"@types/node": "^12.20.15",
"@types/open": "^6.2.1",
"@types/rimraf": "^2.0.4",
"@types/sha.js": "^2.4.0",
"@types/vscode": "^1.41.0",
"glob": "^7.1.7",
"mocha": "^6.2.3",
"ts-loader": "^8.3.0",
"tslint": "^5.20.0",
"typescript": "^4.3.2",
"vscode-cpptools": "^3.1.0",
"vscode-test": "^1.5.2",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"download": "^7.1.0",
"open": "^7.4.2",
"rimraf": "^3.0.2",
"sha.js": "^2.4.11",
"ssri": ">=8.0.1",
"vscode-jsonrpc": "^4.0.0"
},
"icon": "icon.png",
"homepage": "https://github.com/tonka3000/vscode-qt-tools",
"repository": {
"type": "git",
"url": "https://github.com/tonka3000/vscode-qt-tools.git"
},
"bugs": {
"url": "https://github.com/tonka3000/vscode-qt-tools/issues",
"email": "tonka3100@gmail.com"
}
}