forked from mjbvz/vscode-markdown-emoji
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 839 Bytes
/
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
{
"name": "markdown-emoji",
"version": "0.1.0",
"displayName": "Markdown Emoji",
"description": "Adds emoji syntax support to VS Code's built-in markdown preview",
"keywords": [
"emoji",
"markdown",
"emoticons",
"github",
"multi-root ready"
],
"icon": "logo/logox128.png",
"publisher": "bierner",
"license": "MIT",
"repository": {
"url": "https://github.com/mjbvz/vscode-markdown-emoji.git"
},
"bugs": {
"url": "https://github.com/mjbvz/vscode-markdown-emoji/issues"
},
"engines": {
"vscode": "^1.33.0"
},
"categories": [
"Other"
],
"activationEvents": [],
"contributes": {
"markdown.markdownItPlugins": true
},
"main": "./extension.js",
"devDependencies": {
"@types/vscode": "^1.33.0"
},
"dependencies": {
"markdown-it-emoji": "^2.0.0"
}
}