-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
164 lines (164 loc) · 5.71 KB
/
package.json
File metadata and controls
164 lines (164 loc) · 5.71 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
{
"name": "coc-java-explorer",
"description": "coc.nvim extension project manager for java",
"version": "0.2.6",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/asmodeus812/coc-java-explorer"
},
"scripts": {
"watch": "node esbuild.mjs --watch",
"build": "node esbuild.mjs",
"prepare": "node esbuild.mjs"
},
"keywords": [
"coc.nvim"
],
"engines": {
"coc": "^0.0.82"
},
"capabilities": {
"virtualWorkspaces": false,
"untrustedWorkspaces": {
"supported": false
}
},
"activationEvents": [
"onLanguage:java",
"workspaceContains:pom.xml",
"workspaceContains:*/pom.xml",
"workspaceContains:build.gradle",
"workspaceContains:*/build.gradle",
"workspaceContains:settings.gradle",
"workspaceContains:*/settings.gradle",
"workspaceContains:build.gradle.kts",
"workspaceContains:*/build.gradle.kts",
"workspaceContains:settings.gradle.kts",
"workspaceContains:*/settings.gradle.kts",
"workspaceContains:.classpath",
"workspaceContains:*/.classpath"
],
"devDependencies": {
"coc.nvim": "^0.0.83-next.18",
"copy-webpack-plugin": "^11.0.0",
"esbuild": "^0.15.13",
"glob": "^7.2.3",
"mocha": "^9.2.2",
"ts-loader": "^9.4.2",
"tslint": "^6.1.3",
"typescript": "^4.9.4",
"vscode-languageserver-protocol": "^3.17.2",
"webpack": "^5.76.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"await-lock": "^2.2.2",
"development": "^0.0.6",
"fmtr": "^1.1.4",
"fs-extra": "^10.1.0",
"globby": "^13.1.3",
"lodash": "^4.17.21",
"minimatch": "^5.1.6",
"semver": "^7.3.8"
},
"license": "MIT",
"contributes": {
"javaExtensions": [
"./server/com.microsoft.jdtls.ext.core"
],
"commands": [
{
"command": "java.project.addLibraries",
"title": "Add jar libraries to project"
},
{
"command": "java.project.addLibraryFolders",
"title": "Add library folders to project"
},
{
"command": "java.project.refreshLibraries",
"title": "Refresh project libraries"
},
{
"command": "java.project.create",
"title": "Create a new Java project"
},
{
"command": "java.view.package.linkWithFolder",
"title": "Link package view with folder"
},
{
"command": "java.view.package.unlinkWithFolder",
"title": "Unlink package view from folder"
},
{
"command": "java.view.package.changeToFlatPackageView",
"title": "Show package view as flat view"
},
{
"command": "java.view.package.changeToHierarchicalPackageView",
"title": "Show package view as hierarchical view"
},
{
"command": "java.view.package.internalRefresh",
"title": "Internal refresh of package view"
},
{
"command": "java.view.package.refresh",
"title": "Refresh project & packages in view"
},
{
"command": "java.view.package.exportJar",
"title": "Export project jar file"
},
{
"command": "java.view.package.revealProject",
"title": "Reveal project in project view"
},
{
"command": "java.view.explorer.showNonJavaResources",
"title": "Show non-Java resources in view"
},
{
"command": "java.view.explorer.hideNonJavaResources",
"title": "Hide non-Java resources in view"
}
],
"configuration": {
"type": "object",
"title": "Java Project Manager",
"properties": {
"java.dependency.showMembers": {
"type": "boolean",
"description": "Show class members in the project explorer view when a class is expanded",
"default": false
},
"java.dependency.autoRefresh": {
"type": "boolean",
"description": "Set to true to automatically refresh the tree view when changes to the classpath occur and the view is opened or visible",
"default": true
},
"java.dependency.refreshDelay": {
"type": "number",
"description": "The debounce refresh delay after which detected changes to the class path will reflect and update the project view",
"default": 2000
},
"java.dependency.packagePresentation": {
"type": "string",
"enum": [
"flat",
"hierarchical"
],
"description": "Show the package view explorer in either a flat or hierarchical view model",
"default": "flat"
},
"java.project.explorer.showNonJavaResources": {
"type": "boolean",
"description": "Show non java related file system resources such as folders or files",
"default": false
}
}
}
}
}