-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
262 lines (262 loc) · 7.7 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
{
"name": "gruvbox-material",
"displayName": "Gruvbox Material",
"description": "Gruvbox with Material Palette",
"author": "sainnhe (https://github.com/sainnhe)",
"publisher": "sainnhe",
"version": "6.5.2",
"homepage": "https://github.com/sainnhe/gruvbox-material-vscode",
"bugs": {
"url": "https://github.com/sainnhe/gruvbox-material-vscode/issues"
},
"icon": "icon.png",
"license": "MIT",
"keywords": [
"gruvbox",
"theme"
],
"categories": [
"Themes"
],
"galleryBanner": {
"color": "#32302f",
"theme": "dark"
},
"repository": {
"type": "git",
"url": "https://github.com/sainnhe/gruvbox-material-vscode.git"
},
"extensionKind": [
"ui",
"workspace"
],
"activationEvents": [
"onStartupFinished"
],
"capabilities": {
"untrustedWorkspaces": {
"supported": true
},
"virtualWorkspaces": true
},
"main": "dist/index-client.js",
"browser": "dist/index-web.js",
"contributes": {
"themes": [
{
"label": "Gruvbox Material Dark",
"uiTheme": "vs-dark",
"path": "./themes/gruvbox-material-dark.json"
},
{
"label": "Gruvbox Material Light",
"uiTheme": "vs",
"path": "./themes/gruvbox-material-light.json"
}
],
"configuration": {
"title": "Gruvbox Material",
"properties": {
"gruvboxMaterial.darkContrast": {
"type": "string",
"default": "medium",
"description": "Background contrast for the dark variant.",
"enum": [
"soft",
"medium",
"hard"
]
},
"gruvboxMaterial.lightContrast": {
"type": "string",
"default": "medium",
"description": "Background contrast for the light variant.",
"enum": [
"soft",
"medium",
"hard"
]
},
"gruvboxMaterial.darkWorkbench": {
"type": "string",
"default": "material",
"description": "Workbench style for the dark variant.",
"enum": [
"material",
"flat",
"high-contrast"
]
},
"gruvboxMaterial.lightWorkbench": {
"type": "string",
"default": "material",
"description": "Workbench style for the light variant.",
"enum": [
"material",
"flat",
"high-contrast"
]
},
"gruvboxMaterial.darkCursor": {
"type": "string",
"default": "white",
"description": "The cursor color in the dark variant.",
"enum": [
"white",
"red",
"orange",
"yellow",
"green",
"aqua",
"blue",
"purple"
]
},
"gruvboxMaterial.lightCursor": {
"type": "string",
"default": "black",
"description": "The cursor color in the light variant.",
"enum": [
"black",
"red",
"orange",
"yellow",
"green",
"aqua",
"blue",
"purple"
]
},
"gruvboxMaterial.darkSelection": {
"type": "string",
"default": "grey",
"description": "The background color of selected text in the dark variant.",
"enum": [
"grey",
"red",
"orange",
"yellow",
"green",
"aqua",
"blue",
"purple"
]
},
"gruvboxMaterial.lightSelection": {
"type": "string",
"default": "grey",
"description": "The background color of selected text in the light variant.",
"enum": [
"grey",
"red",
"orange",
"yellow",
"green",
"aqua",
"blue",
"purple"
]
},
"gruvboxMaterial.darkPalette": {
"type": "string",
"default": "material",
"markdownDescription": "The color palette used in the dark variant. [Preview](https://github.com/sainnhe/gruvbox-material#introduction)",
"enum": [
"material",
"mix",
"original"
],
"enumDescriptions": [
"Carefully designed to have a soft contrast.",
"Color palette obtained by calculating the mean of the other two.",
"The color palette used in the original gruvbox."
]
},
"gruvboxMaterial.lightPalette": {
"type": "string",
"default": "material",
"markdownDescription": "The color palette used in the light variant. [Preview](https://github.com/sainnhe/gruvbox-material#introduction)",
"enum": [
"material",
"mix",
"original"
],
"enumDescriptions": [
"Carefully designed to have a soft contrast.",
"Color palette obtained by calculating the mean of the other two.",
"The color palette used in the original gruvbox."
]
},
"gruvboxMaterial.colorfulSyntax": {
"type": "boolean",
"default": false,
"markdownDescription": "Enabling this option will cause more tokens to be colored. By default, only the minimum but necessary tokens will be colored.\n\n**Note:** This design is deprecated, there are a lot of bugs and that's why I redesigned the syntax highlighting logic and set it as default."
},
"gruvboxMaterial.italicKeywords": {
"type": "boolean",
"default": false,
"description": "Italicize keywords or not."
},
"gruvboxMaterial.italicComments": {
"type": "boolean",
"default": true,
"description": "Italicize comments or not."
},
"gruvboxMaterial.diagnosticTextBackgroundOpacity": {
"type": "string",
"default": "0%",
"markdownDescription": "The opacity of the background color of [diagnostic text](https://code.visualstudio.com/updates/v1_52#_error-background-colors).",
"enum": [
"0%",
"12.5%",
"25%",
"37.5%",
"50%"
]
},
"gruvboxMaterial.highContrast": {
"type": "boolean",
"default": false,
"description": "Whether to add an additional border around items across the UI to increase the contrast."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"clean": "rimraf dist *.vsix icon.png",
"compile:ts": "tsc",
"compile:themes": "node dist/hook/generateThemes.js",
"compile:icon": "node dist/hook/generateIcon.js",
"compile": "npm run clean && npm run compile:ts && npm run compile:themes && npm run compile:icon",
"package": "vsce package && git checkout -- themes",
"lint": "eslint . --ext .ts",
"browser": "vscode-test-web --browserType=chromium --extensionDevelopmentPath=. .",
"prepare": "husky install"
},
"lint-staged": {
"*.ts": "eslint --fix",
"*.{js,json,md}": "prettier --write"
},
"engines": {
"vscode": "^1.55.0"
},
"devDependencies": {
"@types/node": "18.11.14",
"@types/sharp": "0.31.0",
"@types/vscode": "1.55.0",
"@typescript-eslint/eslint-plugin": "5.46.1",
"@typescript-eslint/parser": "5.46.1",
"@vscode/test-web": "0.0.33",
"@vscode/vsce": "^2.15.0",
"eslint": "8.29.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.2",
"lint-staged": "13.1.0",
"prettier": "2.8.1",
"rimraf": "3.0.2",
"sharp": "0.31.2",
"typescript": "4.9.4"
}
}