-
-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathpackage.json
executable file
·99 lines (99 loc) · 2.71 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
{
"name": "markdown-editor",
"displayName": "Markdown Editor",
"icon": "media/logo.png",
"description": "A full-featured WYSIWYG editor for markdown.",
"version": "0.1.13",
"publisher": "zaaack",
"private": true,
"engines": {
"vscode": "^1.47.0"
},
"categories": [
"Programming Languages",
"Other"
],
"keywords": [
"markdown",
"editor",
"wysiwyg",
"typora",
"markdown-previewer",
"markdown-editor"
],
"activationEvents": [
"onCommand:markdown-editor.openEditor",
"onWebviewPanel:markdown-editor",
"onLanguage:markdown"
],
"repository": {
"type": "git",
"url": "https://github.com/zaaack/vscode-markdown-editor.git"
},
"main": "out/extension.js",
"contributes": {
"commands": [
{
"command": "markdown-editor.openEditor",
"title": "Open with markdown editor",
"category": "markdown-editor"
}
],
"menus": {
"explorer/context": [
{
"when": "resourceLangId == markdown",
"command": "markdown-editor.openEditor",
"group": "navigation"
}
],
"editor/title/context": [
{
"when": "resourceLangId == markdown",
"command": "markdown-editor.openEditor",
"group": "1_open"
}
]
},
"configuration": {
"title": "markdown-editor",
"properties": {
"markdown-editor.imageSaveFolder": {
"type": "string",
"default": "assets",
"description": "Save images to which folder when upload in markdown, default relative to the markdown file, you can set to project root via `${projectRoot}/assets`."
},
"markdown-editor.useVscodeThemeColor": {
"type": "boolean",
"default": true,
"description": "Use vscode theme's background color as the markdown editor's background color."
},
"markdown-editor.customCss": {
"type": "string",
"default": ""
}
}
},
"keybindings": [
{
"key": "ctrl+shift+alt+m",
"command": "markdown-editor.openEditor",
"mac": "cmd+shift+alt+m",
"when": "editorTextFocus && editorLangId == markdown"
}
]
},
"scripts": {
"watch": "foy watch",
"start": "foy watch",
"pub": "foy build && npm version patch && git push origin master --tags && vsce package && vsce publish"
},
"devDependencies": {
"@types/node": "^12.12.0",
"@types/vscode": "^1.47.0",
"foy": "^0.2.5",
"ts-node": "9.1.1",
"typescript": "4.2.2"
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}