-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
163 lines (163 loc) · 5.49 KB
/
package.json
File metadata and controls
163 lines (163 loc) · 5.49 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
{
"name": "coc-spring-initializr",
"version": "0.0.2",
"description": "Coc extension for creating spring & other projects",
"author": "asmodeus812",
"license": "MIT",
"main": "lib/index.js",
"keywords": [
"coc.nvim"
],
"repository": {
"type": "git",
"url": "https://github.com/asmodeus812/coc-spring-initializr"
},
"engines": {
"coc": "^0.0.82"
},
"scripts": {
"watch": "node esbuild.mjs --watch",
"build": "node esbuild.mjs",
"prepare": "node esbuild.mjs"
},
"devDependencies": {
"coc.nvim": "^0.0.83-next.18",
"copy-webpack-plugin": "^11.0.0",
"domhandler": "^5.0.3",
"esbuild": "^0.15.13",
"extract-zip": "^2.0.1",
"glob": "^7.2.3",
"htmlparser2": "^10.0.0",
"md5": "^2.3.0",
"mocha": "^9.2.2",
"ts-loader": "^9.4.2",
"tslint": "^6.1.3",
"typescript": "^5.3.3",
"vscode-languageserver-protocol": "^3.17.2",
"webpack": "^5.76.0",
"webpack-cli": "^4.10.0",
"xml2js": "^0.6.2"
},
"dependencies": {
"development": "^0.0.6",
"fs-extra": "^10.1.0",
"lodash": "^4.17.21",
"minimatch": "^5.1.6"
},
"activationEvents": [
"*"
],
"contributes": {
"configuration": {
"title": "Spring Initializr",
"properties": {
"spring.initializr.serviceUrl": {
"default": [
"https://start.spring.io"
],
"type": [
"string",
"array"
],
"pattern": "https?://.+",
"scope": "window",
"description": "Spring Initializr Service URL(s). If more than one url is specified, it requires you to select one every time you create a project."
},
"spring.initializr.defaultLanguage": {
"default": "",
"type": "string",
"enum": [
"",
"Java",
"Kotlin",
"Groovy"
],
"scope": "window",
"description": "Default language."
},
"spring.initializr.defaultJavaVersion": {
"default": "",
"type": "string",
"enum": [
"",
"11",
"15",
"8"
],
"scope": "window",
"description": "Default Java version."
},
"spring.initializr.defaultGroupId": {
"default": "com.example",
"type": "string",
"scope": "window",
"description": "Default value for Group Id."
},
"spring.initializr.defaultArtifactId": {
"default": "demo",
"type": "string",
"scope": "window",
"description": "Default value for Artifact Id."
},
"spring.initializr.defaultPackaging": {
"default": "",
"type": "string",
"enum": [
"",
"JAR",
"WAR"
],
"scope": "window",
"description": "Default packaging."
},
"spring.initializr.defaultOpenProjectMethod": {
"default": "",
"type": "string",
"scope": "window",
"description": "Default action for newly generated projects",
"enum": [
"",
"Open",
"Cancel"
]
},
"spring.initializr.parentFolder": {
"default": "artifactId",
"type": "string",
"enum": [
"artifactId",
"none"
],
"enumDescriptions": [
"Place project in a folder named after Artifact Id",
"Do not create a folder for the project"
],
"scope": "window",
"description": "Controls if a new sub-folder should be created for the newly generated project."
}
}
},
"commands": [
{
"command": "spring.initializr.addStarters",
"title": "Add Spring Boot Starters"
},
{
"command": "spring.initializr.createProject",
"title": "Create Spring Boot Project"
},
{
"command": "spring.initializr.maven-project",
"title": "Generate Maven Project (Initializr)"
},
{
"command": "spring.initializr.gradle-project",
"title": "Generate Gradle Project (Initializr)"
},
{
"command": "spring.initializr.gradle-project-kotlin",
"title": "Generate Gradle Kotlin Project (Initializr)"
}
]
}
}