forked from TobiasTao/vscode-md
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
273 lines (273 loc) · 7.22 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
{
"name": "vscode-md",
"displayName": "%ext.displayName%",
"description": "%ext.description%",
"publisher": "TobiasTao",
"version": "0.6.2",
"engines": {
"vscode": "^1.50.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCustomEditor:myEdit.markdown"
],
"main": "./dist/extension.js",
"contributes": {
"configuration": {
"title": "vscode-md",
"properties": {
"vscode-md.options.mode": {
"type": "string",
"default": "ir",
"description": "Choose default edit mode",
"enum": [
"ir",
"wysiwyg",
"sv"
],
"enumDescriptions": [
"Instant render mode",
"What-you-see-is-what-you-get mode",
"Traditional split view mode"
]
},
"vscode-md.options.lang": {
"type": "string",
"default": "en_US",
"description": "Localization, i18n",
"enum": [
"zh_CN",
"en_US",
"ko_KR",
"ja_JP",
"zh_TW",
"ru_RU"
]
},
"vscode-md.options.icon": {
"type": "string",
"default": "material",
"description": "Set toolbar icon style, support ant design and material design",
"enum": [
"material",
"ant"
]
},
"vscode-md.options.outline.enable": {
"type": "boolean",
"default": false,
"description": "Show outline of markdown"
},
"vscode-md.options.outline.position": {
"type": "string",
"default": "left",
"description": "Config postion of outline",
"enum": [
"left",
"right"
]
},
"vscode-md.options.tab": {
"type": "string",
"default": " ",
"description": "tab key operation string, default value \" \" equals tabsize = 4"
},
"vscode-md.options.toolbarConfig.hide": {
"type": "boolean",
"default": false,
"description": "Whether to hide the toolbar"
},
"vscode-md.options.toolbarConfig.pin": {
"type": "boolean",
"default": false,
"description": "Whether to pin the toolbar"
},
"vscode-md.options.preview.hljs.lineNumber": {
"type": "boolean",
"default": true,
"description": "Whether to enable line number"
},
"vscode-md.options.preview.math.engine": {
"type": "string",
"default": "KaTeX",
"description": "Mathematical formula rendering engine",
"enum": [
"KaTeX",
"MathJax"
]
},
"vscode-md.options.preview.math.macros": {
"type": "object",
"default": {},
"description": "Macro definitions when rendering using MathJax"
},
"vscode-md.options.preview.actions": {
"type": "array",
"default": [
"desktop",
"tablet",
"mobile",
"mp-wechat",
"zhihu"
],
"description": "custom toolbar actions of preview"
},
"vscode-md.options.preview.markdown.mark": {
"type": "boolean",
"description": "Enable mark syntax"
},
"vscode-md.options.counter.enable": {
"type": "boolean",
"default": true,
"description": "Whether to use counter"
},
"vscode-md.theme.global": {
"type": "string",
"default": "dark",
"description": "Global theme",
"enum": [
"dark",
"classic"
]
},
"vscode-md.theme.content": {
"type": "string",
"default": "dark",
"description": "Markdown content theme",
"enum": [
"light",
"dark",
"wechat",
"ant design"
]
},
"vscode-md.theme.code": {
"type": "string",
"default": "dracula",
"markdownDescription": "Code theme, see [Chroma](https://xyproto.github.io/splash/docs/all.html) for more information ",
"enum": [
"abap",
"algol",
"algol_nu",
"api",
"arduino",
"autumn",
"borland",
"bw",
"colorful",
"dracula",
"emacs",
"friendly",
"fruity",
"github",
"igor",
"lovelace",
"manni",
"monokai",
"monokailight",
"murphy",
"native",
"paraiso-dark",
"paraiso-light",
"pastie",
"perldoc",
"pygments",
"rainbow_dash",
"rrt",
"solarized-dark",
"solarized-dark256",
"solarized-light",
"swapoff",
"tango",
"trac",
"vim",
"vs",
"xcode"
]
},
"vscode-md.image.pathType": {
"type": "string",
"default": "relative",
"description": "Markdown image path type",
"enum": [
"relative",
"absolute",
"picgo"
]
},
"vscode-md.image.dirPath": {
"type": "string",
"default": "",
"description": "The directory used to store the pictures, it must be in workspace. The default is the relative path where Markdown is located"
},
"vscode-md.picgo.configPath": {
"type": "string",
"markdownDescription": "%config.configPath.description%",
"default": ""
}
}
},
"customEditors": [
{
"viewType": "myEdit.markdown",
"displayName": "Markdown Edit",
"selector": [
{
"filenamePattern": "*.md"
}
]
}
]
},
"scripts": {
"vscode:prepublish": "webpack --mode production",
"webpack": "webpack --mode development",
"webpack-dev": "webpack --mode development --watch",
"test-compile": "tsc -p ./",
"deploy": "vsce publish --yarn"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^7.0.2",
"@types/node": "^13.11.0",
"@types/vscode": "^1.50.0",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"eslint": "^6.8.0",
"glob": "^7.1.6",
"mocha": "^7.2.0",
"picgo": "^1.4.14",
"prettier": "^2.0.5",
"ts-loader": "^7.0.5",
"typescript": "^3.8.3",
"vsce": "^1.81.1",
"vscode-test": "^1.4.1",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"vditor": "^3.8.7"
},
"keywords": [
"markdown",
"vditor",
"flowchart",
"gantt",
"katex",
"mathjax",
"picgo"
],
"preview": true,
"icon": "vscode-md.png",
"homepage": "https://github.com/TobiasTao/vscode-md/blob/master/README.md",
"bugs": {
"url": "https://github.com/TobiasTao/vscode-md/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/TobiasTao/vscode-md.git"
},
"license": "MIT"
}