forked from Puschel2020/vscode-java-pack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
369 lines (369 loc) · 12 KB
/
package.json
File metadata and controls
369 lines (369 loc) · 12 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
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
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
{
"name": "vscode-java-pack",
"displayName": "Java Extension Pack",
"description": "Popular extensions for Java development and more.",
"license": "MIT",
"version": "0.15.0",
"publisher": "vscjava",
"preview": true,
"engines": {
"vscode": "^1.52.0"
},
"aiKey": "b4a8a622-6ac7-4cf8-83aa-f325e1890795",
"icon": "logo.png",
"keywords": [
"java",
"debugger",
"junit",
"maven",
"spring"
],
"categories": [
"Extension Packs"
],
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/vscode-java-pack"
},
"homepage": "https://github.com/Microsoft/vscode-java-pack",
"bugs": {
"url": "https://github.com/Microsoft/vscode-java-pack"
},
"main": "./out/extension",
"capabilities": {
"virtualWorkspaces": false
},
"activationEvents": [
"onLanguage:java",
"workspaceContains:pom.xml",
"workspaceContains:build.gradle",
"onCommand:java.overview",
"onCommand:java.showReleaseNotes",
"onWebviewPanel:java.overview",
"onCommand:java.runtime",
"onWebviewPanel:java.runtime",
"onCommand:java.gettingStarted",
"onWebviewPanel:java.gettingStarted",
"onCommand:java.extGuide",
"onWebviewPanel:java.extGuide",
"onCommand:java.welcome",
"onWebviewPanel:java.welcome",
"onCommand:java.classpathConfiguration",
"onWebviewPanel:java.classpathConfiguration",
"onWebviewPanel:java.markdownPreview",
"onCommand:java.formatterSettings"
],
"contributes": {
"walkthroughs": [
{
"id": "javaWelcome",
"title": "Dive into Java Development",
"description": "Your first steps to set up powerful Java tools in a lightweight, performant editor!",
"steps": [
{
"id": "java.runtime",
"title": "Get your Java runtime ready",
"description": "The built-in configurator makes it easy to set up your preferred Java runtime.\n[Configure Java Runtime](command:toSide:java.runtime)",
"media": {
"path": "walkthrough/runtime.png",
"altText": "Configure Java Runtime with tabs for Project SDKs"
}
},
{
"id": "java.extGuide",
"title": "Support additional tools and frameworks",
"description": "Got additional support for major tool chains, frameworks and application servers.\n[Recommended Java Extensions](command:toSide:java.extGuide)",
"media": {
"path": "walkthrough/extGuide.png",
"altText": "Open Project Folder"
}
},
{
"id": "java.openProjectFolder",
"title": "Open project folder",
"description": "Open an existing folder that contains your Java project, or create a new folder.\n[Open Folder...](command:workbench.action.files.openFolder)\n[Create new Project](command:java.project.create)",
"media": {
"path": "walkthrough/open-project.png",
"altText": "Open Project Folder"
},
"when": "!isMac && workspaceFolderCount == 0"
},
{
"id": "java.openProjectFolder.mac",
"title": "Open project folder",
"description": "Open an existing folder that contains your Java project, or create a new folder.\n[Open Folder...](command:workbench.action.files.openFileFolder)\n[Create new Project](command:java.project.create)",
"media": {
"path": "walkthrough/open-project.png",
"altText": "Open Project Folder"
},
"when": "isMac && workspaceFolderCount == 0"
},
{
"id": "java.showProjectExplorer",
"title": "Explore your project",
"description": "View classpaths and dependencies, and create new projects, packages and classes.\n[Show Java Projects](command:javaProjectExplorer.focus)",
"media": {
"path": "walkthrough/project-manager.png",
"altText": "Project Explorer"
},
"when": "java:projectManagerActivated"
},
{
"id": "java.showProjectExplorer.notActivated",
"title": "Explore your project",
"description": "View classpaths and dependencies, and create new projects, packages and classes.",
"media": {
"path": "walkthrough/project-manager.png",
"altText": "Project Explorer"
},
"when": "!java:projectManagerActivated"
},
{
"id": "java.showDebugView",
"title": "Launch and debug your app",
"description": "The debugger will automatically find the entry point of your project, launch it and start debugging.\n[Show Run and Debug View](command:workbench.view.debug)",
"media": {
"path": "walkthrough/debugger.png",
"altText": "Running and Debugging"
}
},
{
"id": "java.showTesting",
"title": "Run and debug tests",
"description": "The place to show all the test cases in your project. You can also run/debug your test cases from here.\n[Show Testing View](command:testExplorer.focus)",
"media": {
"path": "walkthrough/testing.png",
"altText": "Testing"
},
"when": "java:testRunnerActivated"
},
{
"id": "java.showTesting.notActivated",
"title": "Run and debug tests",
"description": "The place to show all the test cases in your project. You can also run/debug your test cases from here.",
"media": {
"path": "walkthrough/testing.png",
"altText": "Testing"
},
"when": "!java:testRunnerActivated"
},
{
"id": "java.tutorial",
"title": "Quick start with Java",
"description": "Just starting with Java? Get hands on with these tutorials to learn the fundamentals of Java editing & debugging.\n[Open Tutorials](command:toSide:java.gettingStarted)",
"media": {
"path": "walkthrough/tutorials.png",
"altText": "Tutorials"
}
}
]
}
],
"commands": [
{
"command": "java.welcome",
"category": "Java",
"title": "Welcome"
},
{
"command": "java.classpathConfiguration",
"category": "Java",
"title": "Configure Classpath"
},
{
"command": "java.overview",
"category": "Java",
"title": "Overview"
},
{
"command": "java.showReleaseNotes",
"category": "Java",
"title": "Show Release Notes"
},
{
"command": "java.runtime",
"title": "Configure Java Runtime",
"category": "Java"
},
{
"command": "java.gettingStarted",
"category": "Java",
"title": "Getting Started"
},
{
"command": "java.extGuide",
"category": "Java",
"title": "Extension Guide"
},
{
"command": "java.formatterSettings",
"category": "Java",
"title": "Open Java Formatter Settings with Preview"
},
{
"command": "java.formatterSettings.showTextEditor",
"category": "Java",
"title": "Open Text Editor",
"icon": "$(go-to-file)"
}
],
"configuration": {
"title": "Java Extension Pack",
"properties": {
"java.help.firstView": {
"type": [
"string"
],
"enum": [
"auto",
"overview",
"gettingStarted",
"welcome",
"none"
],
"enumDescriptions": [
"Automatically pick the first experience view",
"Present the Java Overview page",
"Present the Java Getting Started page",
"Present the Java Welcome page",
"Do not show any view"
],
"default": "auto",
"description": "Sets the default view which is presented during the first use.",
"scope": "window"
},
"java.help.showReleaseNotes": {
"type": "boolean",
"default": true,
"description": "Show Java Extension Pack release notes on startup.",
"scope": "window"
}
}
},
"menus": {
"commandPalette": [
{
"command": "java.formatterSettings.showTextEditor",
"when": "false"
}
],
"view/title": [
{
"command": "java.runtime",
"group": "overflow_30@10",
"when": "view == javaProjectExplorer"
},
{
"command": "java.classpathConfiguration",
"group": "overflow_30@20",
"when": "view == javaProjectExplorer"
}
],
"view/item/context": [
{
"command": "java.classpathConfiguration",
"group": "9_configuration@20",
"when": "view == javaProjectExplorer && viewItem =~ /java:project(?=.*?\\b\\+unmanagedFolder\\b)(?=.*?\\b\\+uri\\b)/"
}
],
"editor/title": [
{
"command": "java.formatterSettings.showTextEditor",
"when": "activeCustomEditorId == java.formatterSettingsEditor",
"group": "navigation"
}
]
},
"customEditors": [
{
"viewType": "java.formatterSettingsEditor",
"displayName": "Java Formatter Settings Editor",
"selector": [
{
"filenamePattern": "*.xml"
}
],
"priority": "option"
}
]
},
"scripts": {
"vscode:prepublish": "npm run build",
"compile": "webpack --config webpack.config.js",
"watch": "webpack --config webpack.config.js --watch --info-verbosity verbose",
"build": "webpack --config webpack.config.js --mode=\"production\""
},
"devDependencies": {
"@iconify-icons/codicon": "^1.1.8",
"@iconify/react": "^1.1.3",
"@reduxjs/toolkit": "^1.5.0",
"@types/bytes": "^3.1.0",
"@types/expand-tilde": "^2.0.0",
"@types/lodash": "^4.14.161",
"@types/minimatch": "^3.0.3",
"@types/node": "^8.10.63",
"@types/path-exists": "^3.0.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^16.9.8",
"@types/react-redux": "^7.1.16",
"@types/request": "^2.48.5",
"@types/request-promise-native": "^1.0.17",
"@types/semver": "^5.5.0",
"@types/vscode": "1.52.0",
"@types/winreg": "^1.2.30",
"@types/xmldom": "^0.1.30",
"axios": "^0.21.1",
"arch": "^2.1.2",
"autoprefixer": "^8.5.1",
"bootstrap": "^4.5.2",
"bytes": "^3.1.0",
"css-loader": "^3.6.0",
"expand-tilde": "^2.0.2",
"file-loader": "^6.2.0",
"find-java-home": "^1.1.0",
"highlight.js": "10.5.0",
"html-webpack-inline-source-plugin": "0.0.10",
"html-webpack-plugin": "^3.2.0",
"jquery": "^3.5.1",
"lodash": "^4.17.21",
"minimatch": "^3.0.4",
"node-sass": "^4.14.1",
"path-exists": "^3.0.0",
"popper.js": "^1.16.1",
"postcss-loader": "^2.1.5",
"react": "^17.0.1",
"react-bootstrap": "^1.4.3",
"react-dom": "^17.0.1",
"react-redux": "^7.2.2",
"request": "^2.88.2",
"request-promise-native": "^1.0.9",
"sass-loader": "^7.3.1",
"style-loader": "^0.21.0",
"ts-loader": "^4.3.0",
"tslint": "^5.20.1",
"typescript": "^3.7.5",
"url-loader": "^4.1.1",
"vscode-tas-client": "^0.1.22",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"xmldom": "^0.6.0"
},
"extensionPack": [
"redhat.java",
"vscjava.vscode-java-debug",
"vscjava.vscode-java-test",
"vscjava.vscode-maven",
"vscjava.vscode-java-dependency",
"VisualStudioExptTeam.vscodeintellicode"
],
"dependencies": {
"@types/fs-extra": "^9.0.1",
"applicationinsights": "^2.0.0",
"compare-versions": "^3.6.0",
"expand-home-dir": "0.0.3",
"fs-extra": "^9.0.1",
"semver": "^5.7.1",
"vscode-extension-telemetry-wrapper": "^0.9.0",
"winreg-utf8": "^0.1.1"
}
}