-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·90 lines (90 loc) · 2.21 KB
/
package.json
File metadata and controls
executable file
·90 lines (90 loc) · 2.21 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
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
{
"name": "vscode-mathpix-markdown",
"license": "MIT",
"author": "Mathpix",
"displayName": "Mathpix Markdown",
"description": "Enable rendering Mathpix Markdown with latex and chemistry support.",
"version": "0.2.1",
"publisher": "mathpix",
"repository": {
"type": "git",
"url": "https://github.com/mathpix/vscode-mathpix-markdown.git"
},
"bugs": {
"url": "https://github.com/mathpix/vscode-mathpix-markdown/issues"
},
"icon": "images/mathpix-icon.png",
"engines": {
"vscode": "^1.32.0"
},
"categories": [
"Other"
],
"keywords": [
"vscode",
"markdown",
"latex",
"math",
"chemistry",
"html",
"rendering",
"extension"
],
"main": "./dist/extension",
"activationEvents": [],
"contributes": {
"languages": [
{
"id": "markdown",
"extensions": [
"mmd",
"mdl"
]
}
],
"markdown.markdownItPlugins": true,
"markdown.previewStyles": [
"./mathpix-markdown.css"
],
"configuration": {
"title": "Mathpix Markdown",
"properties": {
"mathpix-markdown.html.disableRendering": {
"type": "boolean",
"default": false,
"description": "Disable html tags from being rendered."
},
"mathpix-markdown.smiles.disableColors": {
"type": "boolean",
"default": false,
"description": "Disable all coloring in chemistry rendering."
},
"mathpix-markdown.smiles.disableGradient": {
"type": "boolean",
"default": false,
"description": "Disable gradient coloring in chemistry rendering."
}
}
}
},
"scripts": {
"vscode:prepublish": "webpack --mode production",
"webpack": "webpack --mode development",
"webpack-dev": "webpack --mode development --watch",
"publish-patch": "vsce publish patch -m 'Update extension version to %s'",
"publish-minor": "vsce publish minor -m 'Update extension version to %s'",
"publish-major": "vsce publish major -m 'Update extension version to %s'",
"lint": "eslint ./src --ext .js"
},
"devDependencies": {
"@types/node": "^12.12.0",
"@types/vscode": "^1.32.0",
"eslint": "^7.14.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"mathpix-markdown-it": "2.0.7",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
}
}