-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 976 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 976 Bytes
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
{
"name": "markdown-tools",
"displayName": "Markdown Tools",
"description": "Supporting editing the Markdown file.",
"publisher": "Hacknock",
"version": "0.0.1",
"license": "Apache",
"repository": "https://github.com/Hacknock/markdown-tools-for-vscode",
"engines": {
"vscode": "^1.55.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:markdown",
"onCommand:markdown-tools.greeting"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "markdown-tools.greeting",
"title": "Greeting"
}
],
"keybindings": [
{
"command": "markdown-tools.onEnterKey",
"key": "ctrl+enter",
"when": "editorTextFocus && !editorReadonly && editorLangId == markdown"
}
]
},
"scripts": {},
"devDependencies": {
"@types/node": "^12.11.7",
"@types/vscode": "^1.55.0",
"typescript": "^4.1.3",
"vscode-test": "^1.5.0"
}
}