-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
144 lines (144 loc) · 4.51 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
{
"name": "markdown-preview-github-styles",
"version": "2.1.0",
"displayName": "Markdown Preview Github Styling",
"description": "Changes VS Code's built-in markdown preview to match Github's style",
"keywords": [
"markdown",
"markdown style",
"github",
"github markdown",
"style"
],
"icon": "logo/logox128.png",
"publisher": "bierner",
"license": "MIT",
"repository": {
"url": "https://github.com/mjbvz/vscode-github-markdown-preview-style.git"
},
"bugs": {
"url": "https://github.com/mjbvz/vscode-github-markdown-preview-style/issues"
},
"engines": {
"vscode": "^1.41.0"
},
"categories": [
"Other"
],
"main": "dist/extension.js",
"browser": "dist/extension.js",
"activationEvents": [],
"contributes": {
"markdown.markdownItPlugins": true,
"markdown.previewStyles": [
"./dist/base.css",
"./dist/github-markdown-theme-base.css",
"./dist/github-markdown-light.css",
"./dist/github-markdown-light-colorblind.css",
"./dist/github-markdown-light-tritanopia.css",
"./dist/github-markdown-light-high-contrast.css",
"./dist/github-markdown-dark.css",
"./dist/github-markdown-dark-dimmed.css",
"./dist/github-markdown-dark-colorblind.css",
"./dist/github-markdown-dark-tritanopia.css",
"./dist/github-markdown-dark-high-contrast.css",
"./dist/highlight-js.css"
],
"configuration": [
{
"title": "Markdown Preview Github Styling",
"properties": {
"markdown-preview-github-styles.colorTheme": {
"type": "string",
"order": 0,
"description": "Color theme mode for the styling of the Markdown preview.",
"enum": [
"auto",
"system",
"light",
"dark"
],
"enumItemLabels": [
"Auto (match editor)",
"System",
"Single theme: Light",
"Single theme: Dark"
],
"enumDescriptions": [
"Automatically match the editor color theme.",
"Sync to the system/OS color theme.",
"Always use the selected Light theme",
"Always use the selected Dark theme"
],
"default": "auto"
},
"markdown-preview-github-styles.lightTheme": {
"type": "string",
"order": 1,
"markdownDescription": "Theme to use when displaying in Light mode. Ignored if `#markdown-preview-github-styles.colorTheme#` is set to `Single theme: Dark`",
"enum": [
"light",
"light_high_contrast",
"light_colorblind",
"light_tritanopia",
"dark",
"dark_high_contrast",
"dark_colorblind",
"dark_tritanopia",
"dark_dimmed"
],
"enumItemLabels": [
"Light",
"Light high contrast",
"Light Protanopia & Deuteranopia",
"Light Tritanopia",
"Dark",
"Dark high contrast",
"Dark Protanopia & Deuteranopia",
"Dark Tritanopia",
"Dark dimmed"
],
"default": "light"
},
"markdown-preview-github-styles.darkTheme": {
"type": "string",
"order": 2,
"markdownDescription": "Theme to use when displaying in Dark mode. Ignored if `#markdown-preview-github-styles.colorTheme#` is set to `Single theme: Light`.",
"enum": [
"light",
"light_high_contrast",
"light_colorblind",
"light_tritanopia",
"dark",
"dark_high_contrast",
"dark_colorblind",
"dark_tritanopia",
"dark_dimmed"
],
"enumItemLabels": [
"Light",
"Light high contrast",
"Light Protanopia & Deuteranopia",
"Light Tritanopia",
"Dark",
"Dark high contrast",
"Dark Protanopia & Deuteranopia",
"Dark Tritanopia",
"Dark dimmed"
],
"default": "dark"
}
}
}
]
},
"devDependencies": {
"@types/markdown-it": "^13.0.7",
"@types/node": "^22.5.5",
"generate-github-markdown-css": "^6.3.0"
},
"scripts": {
"vscode:prepublish": "npm run build",
"build": "node ./build/generate-github-css.mjs"
}
}