-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
409 lines (409 loc) · 12 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
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
{
"name": "wxa",
"displayName": "wxa",
"description": "微信小程序开发助手。开箱即用,安装完毕你将获得: 代码自动填充、格式化; 语法高亮、检查(包括wxml、wxs文件);代码片段提示; 单文件组件支持",
"author": "Genuifx <genuifx@gmail.com>",
"icon": "asset/wxajs.png",
"version": "0.1.1",
"publisher": "genuifx",
"scripts": {
"compile": "tsc -p . && tsc -p server",
"watch": "run-p watch-client watch-server",
"watch-client": "tsc -w -p .",
"watch-server": "tsc -w -p server",
"precommit": "lint-staged",
"lint": "tslint -p tslint.json",
"test:server": "cd server && npm run compile && npm test",
"test:e2e": "sh ./test/e2e.sh",
"test": "run-s lint compile test:server test:e2e",
"docs": "bash ./build/update-docs.sh",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"lint-staged": {
"*.ts": [
"tslint --fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "https://github.com/wxajs/wxa-vscode.git"
},
"keywords": [
"wxa",
"mp",
"miniprogram",
"mini-app",
"微信小程序"
],
"categories": [
"Programming Languages"
],
"engines": {
"vscode": "^1.26.0"
},
"dependencies": {
"vscode-languageclient": "^5.0.1",
"vscode-languageserver-types": "^3.12.0"
},
"activationEvents": [
"onLanguage:wxa"
],
"main": "./dist/client/wxaMain",
"contributes": {
"commands": [
{
"command": "wxa.generateGrammar",
"title": "wxa: Generate grammar from `wxa.grammar.customBlocks`"
}
],
"breakpoints": [
{
"language": "wxa"
}
],
"languages": [
{
"id": "wxa",
"aliases": [
"Wxa",
"wxa"
],
"extensions": [
".wxa"
],
"configuration": "./languages/wxa-language-configuration.json"
},
{
"id": "wxa-html",
"aliases": [
"Wxa-html"
],
"configuration": "./languages/wxa-html-language-configuration.json"
},
{
"id": "postcss",
"aliases": [
"PostCSS",
"POSTCSS"
],
"configuration": "./languages/postcss-language-configuration.json"
},
{
"id": "wxs",
"aliases": [
"WXS"
]
}
],
"grammars": [
{
"language": "wxa",
"scopeName": "source.wxa",
"path": "./syntaxes/wxa.gen.json",
"embeddedLanguages": {
"text.html.basic": "html",
"text.html.wxa-html": "wxa-html",
"text.pug": "jade",
"text.haml": "haml",
"source.css": "css",
"source.css.scss": "scss",
"source.css.less": "less",
"source.css.postcss": "postcss",
"source.sass": "sass",
"source.stylus": "stylus",
"source.js": "javascript",
"source.ts": "typescript",
"source.wxs": "wxs",
"source.coffee": "coffeescript",
"text.html.markdown": "md",
"source.yaml": "yaml",
"source.json": "json",
"source.php": "php"
}
},
{
"language": "postcss",
"scopeName": "source.css.postcss",
"path": "./syntaxes/postcss.json"
},
{
"language": "wxa-html",
"scopeName": "text.html.wxa-html",
"path": "./syntaxes/wxa-html.gen.json",
"embeddedLanguages": {
"source.js": "javascript"
}
},
{
"language": "wxs",
"scopeName": "source.wxs",
"path": "./syntaxes/wxs.json",
"embeddedLanguages": {
"source.js": "javascript"
}
}
],
"configuration": {
"title": "WXA",
"properties": {
"wxa.completion.autoImport": {
"type": "boolean",
"default": true,
"description": "Include completion for module export and auto import them"
},
"wxa.completion.useScaffoldSnippets": {
"type": "boolean",
"default": true,
"description": "Enable/disable Vetur's built-in scaffolding snippets"
},
"wxa.grammar.customBlocks": {
"type": "object",
"default": {
"docs": "md",
"i18n": "json"
},
"description": "Mapping from custom block tag name to language name. Used for generating grammar to support syntax highlighting for custom blocks."
},
"wxa.validation.template": {
"type": "boolean",
"default": false,
"description": "Validate vue-html in <template> using eslint-plugin-vue"
},
"wxa.validation.style": {
"type": "boolean",
"default": true,
"description": "Validate css/scss/less/postcss in <style>"
},
"wxa.validation.script": {
"type": "boolean",
"default": true,
"description": "Validate js/ts in <script>"
},
"wxa.validation.json": {
"type": "boolean",
"default": true,
"description": "Validate json in <config>"
},
"wxa.format.options.tabSize": {
"type": "number",
"default": 2,
"description": "Number of spaces per indentation level. Inherited by all formatters."
},
"wxa.format.options.useTabs": {
"type": "boolean",
"default": false,
"description": "Use tabs for indentation. Inherited by all formatters."
},
"wxa.format.defaultFormatter.html": {
"type": "string",
"default": "prettyhtml",
"enum": [
"none",
"prettyhtml",
"js-beautify-html"
],
"enumDescriptions": [
"disable formatting",
"prettyhtml",
"html formatter of js-beautify"
],
"description": "Default formatter for <template> region"
},
"wxa.format.defaultFormatter.css": {
"type": "string",
"default": "prettier",
"enum": [
"none",
"prettier"
],
"enumDescriptions": [
"disable formatting",
"css formatter using css parser from prettier"
],
"description": "Default formatter for <style> region"
},
"wxa.format.defaultFormatter.postcss": {
"type": "string",
"default": "prettier",
"enum": [
"none",
"prettier"
],
"enumDescriptions": [
"disable formatting",
"postcss formatter using css parser from prettier"
],
"description": "Default formatter for <style lang='postcss'> region"
},
"wxa.format.defaultFormatter.scss": {
"type": "string",
"default": "prettier",
"enum": [
"none",
"prettier"
],
"enumDescriptions": [
"disable formatting",
"scss formatter using scss parser from prettier"
],
"description": "Default formatter for <style lang='scss'> region"
},
"wxa.format.defaultFormatter.less": {
"type": "string",
"default": "prettier",
"enum": [
"none",
"prettier"
],
"enumDescriptions": [
"disable formatting",
"less formatter using postcss parser from prettier"
],
"description": "Default formatter for <style lang='less'> region"
},
"wxa.format.defaultFormatter.stylus": {
"type": "string",
"default": "stylus-supremacy",
"enum": [
"none",
"stylus-supremacy"
],
"enumDescriptions": [
"disable formatting",
"stylus formatter from stylus-supremacy"
],
"description": "Default formatter for <style lang='stylus'> region"
},
"wxa.format.defaultFormatter.js": {
"type": "string",
"default": "prettier",
"enum": [
"none",
"prettier",
"prettier-eslint",
"vscode-typescript"
],
"enumDescriptions": [
"disable formatting",
"js formatter from prettier",
"prettier-eslint",
"js formatter from TypeScript"
],
"description": "Default formatter for <script> region"
},
"wxa.format.defaultFormatter.ts": {
"type": "string",
"default": "prettier",
"enum": [
"none",
"prettier",
"vscode-typescript"
],
"enumDescriptions": [
"disable formatting",
"ts formatter using typescript parser from prettier",
"ts formatter from TypeScript"
],
"description": "Default formatter for <script> region"
},
"wxa.format.defaultFormatterOptions": {
"type": "object",
"properties": {
"prettier": {
"type": "object",
"description": "Global prettier config used by prettier formatter. Used by `prettier` and `prettier-eslint`.\n\nVetur will prefer a prettier config file at home directory if one exists.",
"properties": {}
},
"prettyhtml": {
"type": "object",
"description": "Options for prettyhtml",
"properties": {
"printWidth": {
"type": "number",
"default": 100,
"description": "Maximum amount of characters allowed per line"
},
"singleQuote": {
"type": "boolean",
"default": false,
"description": "Whether to use single quotes by default"
},
"wrapAttributes": {
"type": "boolean",
"default": false,
"description": "Whether to wrap attributes"
},
"sortAttributes": {
"type": "boolean",
"default": false,
"description": "Whether to sort attributes"
}
}
},
"js-beautify-html": {
"type": "object",
"description": "Options for js-beautify"
}
},
"default": {
"js-beautify-html": {
"wrap_attributes": "force-expand-multiline"
},
"prettyhtml": {
"printWidth": 100,
"singleQuote": false,
"wrapAttributes": false,
"sortAttributes": false
}
},
"description": "Options for all default formatters"
},
"wxa.format.styleInitialIndent": {
"type": "boolean",
"default": false,
"description": "Whether to have initial indent for <style> region"
},
"wxa.format.scriptInitialIndent": {
"type": "boolean",
"default": false,
"description": "Whether to have initial indent for <script> region"
},
"wxa.trace.server": {
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Traces the communication between VS Code and Vue Language Server."
}
}
},
"snippets": [
{
"language": "wxa-html",
"path": "./snippets/snippets.gen.json"
}
]
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/js-beautify": "^1.8.0",
"@types/lodash": "^4.14.117",
"@types/mocha": "^5.2.5",
"@types/node": "^10.11.0",
"@types/resolve": "^0.0.8",
"axios": "^0.19.2",
"cheerio": "^1.0.0-rc.3",
"husky": "^1.0.0-rc.15",
"lint-staged": "^7.3.0",
"mocha": "^5.2.0",
"npm-run-all": "^4.1.5",
"tslint": "^5.8.0",
"typescript": "^3.0.3",
"vuepress": "^0.14.8",
"vscode": "^1.1.22"
}
}