-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
161 lines (161 loc) · 4.44 KB
/
Copy pathpackage.json
File metadata and controls
161 lines (161 loc) · 4.44 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
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
{
"name": "markdown-presentation-tool",
"displayName": "Markdown Presentation Tool",
"description": "Turn any Markdown file into a navigable slide deck inside VS Code. Wrap content with <!-- slide --> and <!-- /slide -->, then present with one click. Supports Mermaid diagrams, code blocks, and full Markdown rendering with live updates.",
"version": "2.0.0",
"icon": "assets/icon.png",
"publisher": "KunalPathak",
"author": "Kunal Pathak",
"homepage": "https://github.com/kanad13/markdown-presentation-tool",
"bugs": {
"url": "https://github.com/kanad13/markdown-presentation-tool/issues"
},
"engines": {
"vscode": "^1.109.0",
"node": ">=18.0.0"
},
"categories": [
"Other",
"Visualization"
],
"keywords": [
"markdown",
"presentation",
"slides",
"slideshow",
"mermaid",
"diagrams",
"powerpoint",
"presenter",
"preview"
],
"qna": "marketplace",
"galleryBanner": {
"color": "#0D47A1",
"theme": "dark"
},
"main": "./src/extension.js",
"activationEvents": [
"onLanguage:markdown"
],
"contributes": {
"commands": [
{
"command": "markdownPresentation.showPreview",
"title": "Show Markdown Presentation",
"category": "Markdown",
"icon": "$(feedback)"
}
],
"menus": {
"editor/title": [
{
"command": "markdownPresentation.showPreview",
"when": "resourceLangId == markdown",
"group": "navigation"
}
]
},
"configuration": {
"title": "Markdown Presentation Tool",
"properties": {
"markdownPresentation.slide.mermaidTheme": {
"type": "string",
"default": "default",
"enum": [
"default",
"dark",
"forest",
"neutral"
],
"enumDescriptions": [
"Auto-detect from VS Code color theme (uses Mermaid dark theme for dark/high-contrast VS Code themes)",
"Dark background, light text",
"Green-toned, nature-inspired palette",
"Grayscale, high-contrast, print-friendly"
],
"description": "Color theme applied to Mermaid diagrams rendered inside slides. When set to 'default', automatically matches your VS Code color theme."
},
"markdownPresentation.slide.showCounter": {
"type": "boolean",
"default": true,
"description": "Show the slide counter (e.g. '1 / 4') in the bottom-right corner during multi-slide presentations."
},
"markdownPresentation.slide.showNavigationArrows": {
"type": "boolean",
"default": true,
"description": "Show the on-screen previous/next arrow buttons on the sides of each slide. Keyboard navigation (arrow keys, Space, PageUp/PageDown) always remains available."
},
"markdownPresentation.slide.headingAlignment": {
"type": "string",
"default": "left",
"enum": [
"left",
"center",
"right"
],
"enumDescriptions": [
"Align headings to the left (default)",
"Center headings horizontally",
"Align headings to the right"
],
"description": "Horizontal alignment for all heading levels (h1–h6) inside slides."
},
"markdownPresentation.slide.contentAlignment": {
"type": "string",
"default": "left",
"enum": [
"left",
"center",
"right"
],
"enumDescriptions": [
"Align text to the left (default)",
"Center all text content",
"Align text to the right"
],
"description": "Overall text alignment for slide content (paragraphs, lists, etc.)."
},
"markdownPresentation.slide.fontSize": {
"type": "string",
"default": "medium",
"enum": [
"small",
"medium",
"large"
],
"enumDescriptions": [
"Small text (0.85em)",
"Normal text size (1em, default)",
"Large text (1.25em)"
],
"description": "Base font size for slide content."
},
"markdownPresentation.slide.backgroundColor": {
"type": "string",
"default": "",
"description": "Background color for slides. Accepts any CSS color value (e.g. '#1e1e1e', 'rgba(0,0,0,0.8)'). Leave empty to use the VS Code editor background color."
}
}
}
},
"scripts": {
"lint": "eslint .",
"test": "node --test && npm run lint",
"package": "vsce package",
"publish": "vsce publish"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.6.0",
"@types/vscode": "1.109.0",
"@vscode/vsce": "^3.9.1",
"eslint": "^10.2.1"
},
"repository": {
"type": "git",
"url": "https://github.com/kanad13/markdown-presentation-tool.git"
},
"license": "MIT",
"pricing": "Free"
}