-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.39 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.39 KB
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
{
"name": "markdown-higlightjs",
"version": "1.0.0",
"displayName": "Markdown Highlight.js",
"description": "Adds highlight.js mardown-it plugin to VSCode's markdown preview. This adds better code block syntax highlighting in the markdown preview pane.",
"keywords": [
"highlight",
"highlightjs",
"markdown",
"preview"
],
"icon": "logo/logox256.png",
"publisher": "davidmwhynot",
"license": "MIT",
"repository": {
"url": "https://github.com/davidmwhynot/vscode-md-highlightjs-ext.git"
},
"bugs": {
"url": "https://github.com/davidmwhynot/vscode-md-highlightjs-ext/issues"
},
"engines": {
"vscode": "^1.43.0"
},
"categories": [
"Other"
],
"main": "./out/extension.js",
"activationEvents": [],
"contributes": {
"markdown.markdownItPlugins": true,
"markdown.previewStyles": [
"./node_modules/highlight.js/styles/atom-one-dark.css"
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint src --ext ts",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/node": "^12.11.7",
"@types/vscode": "^1.43.0",
"eslint": "^6.8.0",
"@typescript-eslint/parser": "^2.18.0",
"@typescript-eslint/eslint-plugin": "^2.18.0",
"glob": "^7.1.6",
"typescript": "^3.7.5",
"vscode-test": "^1.3.0"
},
"dependencies": {
"highlightjs-graphql": "^1.0.1",
"markdown-it-highlightjs": "^3.1.0"
}
}