forked from tejasvi/markless
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
183 lines (183 loc) · 4.2 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
{
"name": "markdown-list-level-colors",
"publisher": "ronWalker22",
"displayName": "markdown-list-level-colors",
"description": "fork of Markless",
"version": "1.0.0",
"engines": {
"vscode": "^1.56.0"
},
"license": "MIT",
"categories": [
"Programming Languages",
"Formatters",
"Visualization",
"Themes",
"Other"
],
"keywords": [
"markdown",
"preview",
"inline",
"latex",
"typora"
],
"author": {
"name": "Tejasvi S. Tomar",
"url": "https://mefyi.com"
},
"repository": {
"type": "git",
"url": "https://github.com/tejasvi/markless"
},
"icon": "assets/icon.png",
"bugs": {
"url": "https://github.com/tejasvi/markless"
},
"activationEvents": [
"onLanguage:markdown"
],
"main": "./out/main.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "markless",
"icon": "assets/activityBar.svg",
"title": "rons-md-theme"
}
]
},
"views": {
"markless": [
{
"type": "webview",
"id": "test.webview",
"name": "",
"visibility": "visible"
}
]
},
"keybindings": [
{
"command": "markless.toggle",
"key": "ctrl+shift+m",
"when": "resourceLangId == markdown"
}
],
"commands": [
{
"command": "test.eval",
"title": "Eval webview"
},
{
"command": "markless.toggle",
"title": "Toggle Inline Preview",
"category": "Markless",
"enablement": "resourceLangId == markdown",
"icon": {
"dark": "./assets/toggle.svg",
"light": "./assets/toggle.svg"
}
}
],
"menus": {
"editor/title": [
{
"when": "resourceLangId == markdown",
"command": "markless.toggle",
"group": "navigation"
}
]
},
"configuration": [
{
"title": "MarkDown-list-level-colors",
"properties": {
"markless.list": {
"description": "Color level lists",
"type": "boolean",
"default": true
},
"markless.inlineCode": {
"description": "Decorate inline code",
"type": "boolean",
"default": true
},
"markless.inlineImage.enabled": {
"description": "Enable image preview",
"type": "boolean",
"default": true
},
"markless.inlineImage.autoPreview": {
"description": "Preview images automatically",
"type": "boolean",
"default": true
},
"markless.headingWhite": {
"description": "Decorate headings white for dark themes. Choose headingWhite or headingBlack, don't enable both.",
"type": "boolean",
"default": true
},
"markless.headingBlack": {
"description": "Decorate headings black for light themes. Choose headingWhite or headingBlack, don't enable both.",
"type": "boolean",
"default": false
},
"markless.quote": {
"description": "Decorate quotes",
"type": "boolean",
"default": true
},
"markless.link": {
"description": "Decorate link and image urls",
"type": "boolean",
"default": true
},
"markless.hoverImage": {
"description": "Preview image on hover",
"type": "boolean",
"default": true
}
}
}
]
},
"dependencies": {
"cheerio": "^1.0.0-rc.9",
"hast-util-to-html": "^7.1.3",
"mathjax-full": "^3.1.4",
"mdast-util-to-hast": "^10.2.0",
"mermaid": "^8.10.1",
"remark-gfm": "^1.0.0",
"remark-math": "^4.0.0",
"remark-parse": "^9.0.0",
"unified": "^9.2.1"
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js",
"vscode:prepublish": "npm run -S esbuild-base -- --minify",
"esbuild-base": "esbuild ./src/extension.js --bundle --outfile=out/main.js --external:vscode --format=cjs --platform=node",
"esbuild": "npm run -S esbuild-base -- --sourcemap",
"esbuild-watch": "npm run -S esbuild-base -- --sourcemap --watch"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^8.0.4",
"@types/node": "^12.20.55",
"@types/vscode": "^1.56.0",
"esbuild": "^0.12.5",
"eslint": "^7.19.0",
"glob": "^7.1.6",
"mocha": "^8.2.1",
"typescript": "^4.1.3",
"vscode-test": "^1.5.0"
},
"__metadata": {
"id": "31b769d3-ba13-4af3-a7e8-5257e0df28b1",
"publisherDisplayName": "Tejasvi S. Tomar",
"publisherId": "48cdae1f-c60f-474f-95a2-86dd106fcb49"
}
}