-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
111 lines (111 loc) · 2.61 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
{
"name": "markdown-wysiwyg",
"displayName": "Markdown Editor",
"description": "A powerful markdown WYSIWYG editor",
"version": "0.7.7",
"publisher": "adamerose",
"private": true,
"license": "GPLv3",
"repository": {
"type": "git",
"url": "https://github.com/adamerose/vscode-markdown-wysiwyg"
},
"engines": {
"vscode": "^1.32.0"
},
"categories": [
"Programming Languages",
"Formatters"
],
"tags": [
"markdown",
"editor",
"wysiwyg",
"ckeditor"
],
"activationEvents": [
"onCustomEditor:markdownEditor.customEditor",
"onCommand:markdownEditor.openCustomEditor"
],
"main": "./dist/extension",
"contributes": {
"customEditors": [
{
"viewType": "markdownEditor.customEditor",
"displayName": "Markdown WYSIWYG Editor",
"selector": [
{
"filenamePattern": "*.md"
}
],
"priority": "default"
}
],
"commands": [
{
"command": "markdownEditor.openCustomEditor",
"title": "Open WYSIWYG Editor",
"icon": "$(preview)"
},
{
"command": "markdownEditor.openDefaultEditor",
"title": "Open Default Editor",
"icon": "$(note)"
}
],
"menus": {
"editor/title": [
{
"command": "markdownEditor.openCustomEditor",
"group": "navigation@-1",
"when": "resourceLangId == markdown && !markdownEditor.editorIsActive"
},
{
"command": "markdownEditor.openDefaultEditor",
"group": "navigation@-1",
"when": "resourceLangId == markdown && markdownEditor.editorIsActive"
},
{
"command": "markdown.showPreviewToSide",
"group": "navigation@1",
"when": "resourceLangId == markdown && markdownEditor.editorIsActive"
}
]
},
"keybindings": [
{
"command": "markdownEditor.openCustomEditor",
"key": "ctrl+shift+e",
"mac": "cmd+shift+e",
"when": "resourceLangId == markdown && !markdownEditor.editorIsActive"
},
{
"command": "markdownEditor.openDefaultEditor",
"key": "ctrl+shift+e",
"mac": "cmd+shift+e",
"when": "resourceLangId == markdown && markdownEditor.editorIsActive"
}
]
},
"scripts": {
"vscode:prepublish": "webpack --mode production",
"webpack": "webpack --mode development",
"webpack-dev": "webpack --mode development --watch",
"test-compile": "tsc -p ./",
"lint": "eslint . --ext .ts,.tsx"
},
"devDependencies": {
"@types/node": "^12.12.0",
"@types/vscode": "^1.32.0",
"@typescript-eslint/eslint-plugin": "^4.16.0",
"@typescript-eslint/parser": "^4.16.0",
"eslint": "^7.21.0",
"ts-loader": "^7.0.5",
"typescript": "^4.4.3",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"prettier": "^2.8.1"
}
}