forked from mjmlio/vscode-mjml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
343 lines (343 loc) · 11.5 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
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
{
"name": "vscode-mjml",
"displayName": "MJML",
"description": "MJML preview, lint, compile for Visual Studio Code.",
"version": "1.0.0",
"publisher": "mjmlio",
"license": "MIT",
"readme": "README.md",
"icon": "images/icon.png",
"author": {
"name": "MJML",
"email": "[email protected]",
"url": "https://mjml.io/"
},
"homepage": "https://github.com/mjmlio/vscode-mjml#readme",
"repository": {
"type": "git",
"url": "https://github.com/mjmlio/vscode-mjml"
},
"bugs": {
"url": "https://github.com/mjmlio/vscode-mjml/issues"
},
"galleryBanner": {
"color": "#f45e43",
"theme": "dark"
},
"categories": [
"Other",
"Linters",
"Snippets",
"Formatters",
"Programming Languages"
],
"keywords": [
"vscode",
"mjml",
"preview",
"lint",
"syntax"
],
"engines": {
"vscode": "^1.23.0"
},
"activationEvents": [
"onCommand:mjml.beautify",
"onCommand:mjml.copyHTML",
"onCommand:mjml.documentation",
"onCommand:mjml.exportHTML",
"onCommand:mjml.migrate",
"onCommand:mjml.multipleScreenshots",
"onCommand:mjml.previewToSide",
"onCommand:mjml.screenshot",
"onCommand:mjml.searchInDocumentation",
"onCommand:mjml.sendEmail",
"onCommand:mjml.template",
"onCommand:mjml.version",
"onLanguage:mjml"
],
"main": "./out/extension",
"contributes": {
"configuration": {
"type": "object",
"title": "MJML",
"properties": {
"mjml.beautify": {
"default": {
"indent_size": 2,
"wrap_attributes_indent_size": 2
},
"description": "Beautify options.",
"type": "object"
},
"mjml.beautifyHtmlOutput": {
"default": false,
"description": "Beautify HTML output. (Works when `mjml.minifyHtmlOutput` aren't enabled.)",
"type": "boolean"
},
"mjml.exportType": {
"default": ".html",
"description": "Specifies the file type of the output file.",
"type": "string"
},
"mjml.lintEnable": {
"default": true,
"description": "Enable/disable MJML linter (requires restart).",
"type": "boolean"
},
"mjml.lintWhenTyping": {
"default": true,
"description": "Whether the linter is run on type or on save.",
"type": "boolean"
},
"mjml.mailFromName": {
"default": "",
"description": "Sender name.",
"type": "string"
},
"mjml.mailRecipients": {
"default": "",
"description": "Comma separated list of recipients email addresses.",
"type": "string"
},
"mjml.mailSender": {
"default": "",
"description": "Sender email address. (Mailjet: must be a verified sender.)",
"type": "string"
},
"mjml.mailSubject": {
"default": "",
"description": "Email subject.",
"type": "string"
},
"mjml.mailer": {
"default": "mailjet",
"description": "Send email with Nodemailer or Mailjet. Possible values are 'nodemailer' and 'mailjet'.",
"type": "string"
},
"mjml.mailjetAPIKey": {
"default": "",
"description": "Mailjet API Key.",
"type": "string"
},
"mjml.mailjetAPISecret": {
"default": "",
"description": "Mailjet API Secret.",
"type": "string"
},
"mjml.minifyHtmlOutput": {
"default": true,
"description": "Minify HTML output.",
"type": "boolean"
},
"mjml.nodemailer": {
"default": {},
"description": "Nodemailer configuration. Please see the Nodemailer (https://nodemailer.com) documentation for more information.",
"type": "object"
},
"mjml.preserveFocus": {
"default": true,
"description": "Preserve focus of Text Editor after preview open.",
"type": "boolean"
},
"mjml.autoPreview": {
"default": false,
"description": "Automatically update preview when switching between MJML documents.",
"type": "boolean"
},
"mjml.previewBackgroundColor": {
"default": "",
"description": "Preview background color.",
"type": "string"
},
"mjml.autoClosePreview": {
"default": true,
"description": "Automatically close preview when all open MJML documents have been closed.",
"type": "boolean"
},
"mjml.screenshotQuality": {
"default": 75,
"description": "Screenshot quality.",
"type": "number"
},
"mjml.screenshotType": {
"default": "jpg",
"description": "Screenshot type. Possible values are 'png', 'jpg', and 'jpeg'.",
"type": "string"
},
"mjml.screenshotWidth": {
"default": 650,
"description": "Screenshot width.",
"type": "number"
},
"mjml.screenshotWidths": {
"default": [
640,
750
],
"description": "Screenshot widths.",
"type": "array"
},
"mjml.updateWhenTyping": {
"default": true,
"description": "Update preview when typing.",
"type": "boolean"
},
"mjml.showSaveDialog": {
"default": false,
"description": "Show the save as dialog instead of input box.",
"type": "boolean"
},
"mjml.templateGallery": {
"default": false,
"description": "Show the template gallery instead of quick pick.",
"type": "boolean"
},
"mjml.templateGalleryAutoClose": {
"default": true,
"description": "Automatically close template gallery when selecting a template.",
"type": "boolean"
}
}
},
"commands": [
{
"command": "mjml.previewToSide",
"title": "Open Preview to the Side",
"category": "MJML",
"icon": {
"light": "./resources/icons/preview_icon_light.svg",
"dark": "./resources/icons/preview_icon_dark.svg"
}
},
{
"command": "mjml.exportHTML",
"title": "Export HTML",
"category": "MJML"
},
{
"command": "mjml.copyHTML",
"title": "Copy HTML",
"category": "MJML"
},
{
"command": "mjml.documentation",
"title": "Documentation",
"category": "MJML"
},
{
"command": "mjml.screenshot",
"title": "Screenshot",
"category": "MJML"
},
{
"command": "mjml.multipleScreenshots",
"title": "Multiple Screenshots",
"category": "MJML"
},
{
"command": "mjml.migrate",
"title": "Migrate",
"category": "MJML"
},
{
"command": "mjml.sendEmail",
"title": "Send Email",
"category": "MJML"
},
{
"command": "mjml.template",
"title": "Template",
"category": "MJML"
},
{
"command": "mjml.beautify",
"title": "Beautify",
"category": "MJML"
},
{
"command": "mjml.searchInDocumentation",
"title": "Search in MJML documentation",
"category": "MJML"
},
{
"command": "mjml.version",
"title": "Version",
"category": "MJML"
}
],
"languages": [
{
"id": "mjml",
"extensions": [
".mjml"
],
"aliases": [
"MJML",
"mjml"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "mjml",
"scopeName": "text.mjml.basic",
"path": "./syntaxes/MJML.tmLanguage"
}
],
"snippets": [
{
"language": "mjml",
"path": "./snippets/mjml.json"
}
],
"menus": {
"editor/title": [
{
"when": "editorLangId == mjml",
"command": "mjml.previewToSide",
"group": "navigation"
}
],
"editor/context": [
{
"when": "editorLangId == mjml",
"command": "mjml.searchInDocumentation",
"group": "mjml"
}
]
}
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"@types/copy-paste": "^1.1.30",
"@types/file-url": "^2.0.0",
"@types/js-beautify": "^1.8.0",
"@types/mime": "^2.0.0",
"@types/node": "*",
"@types/node-fetch": "^2.1.2",
"@types/nodemailer": "^4.6.5",
"@types/npm": "^2.0.29",
"highlight.js": "^9.13.1",
"markdown-it": "^8.4.2",
"markdown-it-anchor": "^5.0.2",
"typescript": "^3.1.3",
"vscode": "^1.1.21"
},
"dependencies": {
"copy-paste": "^1.3.0",
"js-beautify": "^1.8.8",
"mime": "^2.3.1",
"mjml": "^4.7.1",
"node-fetch": "^2.2.0",
"node-mailjet": "^3.3.1",
"nodemailer": "^4.6.8",
"npm": "^6.4.1",
"phantom": "^6.3.0"
}
}