-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 906 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": "md-custom-style",
"displayName": "md-custom-style",
"description": "MD Custom Styling",
"version": "0.0.1",
"icon": "logo/loggox128.png",
"publisher": "someDev",
"main": "extension.js",
"repository": {
"url": "https://github.com/incognitoRepo/vscode-github-md-pre-sty.git"
},
"bugs": {
"url": "https://github.comincognitoRepo/vscode-github-md-pre-sty/issues"
},
"engines": {
"vscode": "^1.34.0"
},
"categories": [
"Other"
],
"contributes": {
"markdown.previewStyles": [
"./base.css",
"./github-markdown.css",
"./node_modules/highlight.js/styles/github.css"
]
},
"dependencies": {
"highlight.js": "^9.13.1"
},
"devDependencies": {
"github-markdown-css": "^2.10.0"
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test",
"build": "node ./build/update-github-markdown-css.js"
}
}