-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
97 lines (97 loc) · 2.38 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "mdtex",
"displayName": "MDTeX",
"description": "Markdown with TeX Support for Visual Studio Code",
"version": "1.0.3",
"license": "MIT",
"author": "Felix Saaro",
"icon": "img/MDTeX-logo.png",
"homepage": "https://github.com/MrF3lix/mdtex/blob/master/readme.md",
"repository": {
"type": "git",
"url": "https://github.com/MrF3lix/mdtex.git"
},
"bugs": {
"url": "https://github.com/MrF3lix/mdtex/issues"
},
"publisher": "MrF3lix",
"engines": {
"vscode": "^1.52.0"
},
"keywords": [
"TeX",
"LaTeX",
"markdown",
"math"
],
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:markdown"
],
"main": "./out/extension.js",
"contributes": {
"markdown.markdownItPlugins": true,
"configuration": {
"title": "mdtex",
"properties": {
"mdtex.delimiters": {
"type": "string",
"default": "dollars",
"description": "Math formula delimiters."
},
"mdtex.autoSaveAsHtml": {
"type": "boolean",
"default": false,
"description": "Auto save as HTML."
},
"mdtex.autoSaveAsHtmlDir": {
"type": "string",
"default": "",
"description": "Path to save the generated HTML to, relative to the source file."
},
"mdtex.codeHighlightStylesheet": {
"type": "string",
"default": "https://cdnjs.cloudflare.com/ajax/libs/highlight.js/10.5.0/styles/github-gist.min.css",
"description": "Code highlight styles."
},
"mdtex.markdownStylesheet": {
"type": "string",
"default": "https://cdnjs.cloudflare.com/ajax/libs/github-markdown-css/4.0.0/github-markdown.min.css",
"description": "Markdown styles."
},
"mdtex.customStylesheet": {
"type": "string",
"default": "",
"description": "Custom styles."
}
}
}
},
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "yarn run compile && yarn run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^8.0.4",
"@types/node": "^12.11.7",
"@types/vscode": "^1.52.0",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"eslint": "^7.15.0",
"glob": "^7.1.6",
"mocha": "^8.1.3",
"typescript": "^4.1.2",
"vscode-test": "^1.4.1"
},
"dependencies": {
"katex": "^0.12.0",
"markdown-it-texmath": "^0.8.0"
}
}