forked from microsoft/vscode-java-pack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
149 lines (149 loc) · 4.06 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
{
"name": "vscode-java-pack",
"displayName": "Java Extension Pack",
"description": "Popular extensions for Java development and more.",
"license": "MIT",
"version": "0.8.0",
"publisher": "vscjava",
"preview": true,
"engines": {
"vscode": "^1.32.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",
"activationEvents": [
"onLanguage:java",
"workspaceContains:pom.xml",
"workspaceContains:build.gradle",
"workspaceContains:mnvw",
"onCommand:java.overview",
"onCommand:java.showReleaseNotes",
"onWebviewPanel:java.overview",
"onCommand:java.runtime",
"onWebviewPanel:java.runtime",
"onCommand:java.gettingStarted",
"onWebviewPanel:java.gettingStarted"
],
"contributes": {
"commands": [
{
"command": "java.overview",
"title": "Java: Overview"
},
{
"command": "java.showReleaseNotes",
"title": "Java: Show Release Notes"
},
{
"command": "java.runtime",
"title": "Java: Configure Java Runtime"
},
{
"command": "java.gettingStarted",
"title": "Java: Getting Started"
}
],
"configuration": {
"title": "Java Extension Pack",
"properties": {
"java.help.firstView": {
"type": [
"string"
],
"enum": [
"auto",
"overview",
"gettingStarted"
],
"enumDescriptions": [
"Automatically pick the first experience view",
"Present the Java Overview page",
"Present the Java Getting Started page"
],
"default": "auto",
"description": "Sets the default view which is presented during the first use.",
"scope": "window"
}
}
}
},
"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\"",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/bytes": "^3.0.0",
"@types/expand-tilde": "^2.0.0",
"@types/jquery": "^3.3.29",
"@types/lodash": "^4.14.137",
"@types/node": "^8.10.46",
"@types/path-exists": "^3.0.0",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"@types/request": "^2.48.1",
"@types/request-promise-native": "^1.0.16",
"@types/semver": "^5.5.0",
"arch": "^2.1.1",
"autoprefixer": "^8.5.1",
"bootstrap": "^4.3.1",
"bytes": "^3.1.0",
"css-loader": "^3.2.0",
"expand-tilde": "^2.0.2",
"find-java-home": "^1.0.0",
"html-webpack-inline-source-plugin": "0.0.10",
"html-webpack-plugin": "^3.2.0",
"jquery": "^3.4.0",
"lodash": "^4.17.15",
"node-sass": "^4.11.0",
"path-exists": "^3.0.0",
"popper.js": "^1.15.0",
"postcss-loader": "^2.1.5",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"request": "^2.88.0",
"request-promise-native": "^1.0.7",
"sass-loader": "^7.0.1",
"style-loader": "^0.21.0",
"ts-loader": "^4.3.0",
"tslint": "^5.16.0",
"typescript": "^2.6.1",
"vscode": "^1.1.33",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1"
},
"extensionPack": [
"redhat.java",
"vscjava.vscode-java-debug",
"vscjava.vscode-java-test",
"vscjava.vscode-maven",
"vscjava.vscode-java-dependency",
"VisualStudioExptTeam.vscodeintellicode"
],
"dependencies": {
"semver": "^5.7.0",
"vscode-extension-telemetry-wrapper": "^0.4.0"
}
}