forked from mjbvz/vscode-github-markdown-preview-style
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 903 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
{
"name": "markdown-preview-github-styles",
"displayName": "Markdown Preview Github Styling",
"description": "Changes VS Code's built-in markdown preview to match Github's style",
"icon": "logo/logox128.png",
"version": "0.0.3",
"publisher": "bierner",
"license": "MIT",
"repository": {
"url": "https://github.com/mjbvz/vscode-github-markdown-preview-style.git"
},
"bugs": {
"url": "https://github.com/mjbvz/vscode-github-markdown-preview-style/issues"
},
"engines": {
"vscode": "^1.15.0"
},
"categories": [
"Other"
],
"contributes": {
"markdown.previewStyles": [
"./base.css",
"./github-markdown.css",
"./node_modules/highlight.js/styles/github.css"
]
},
"dependencies": {
"github-markdown-css": "^2.4.1",
"highlight.js": "^9.10.0"
},
"scripts": {
"build": "node ./build/update-github-markdown-css.js"
}
}