-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1019 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 1019 Bytes
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
{
"name": "markdown-github-alerts",
"displayName": "Markdown GitHub Alerts",
"description": "Adds GitHub alert blocks support to VSCode's markdown preview",
"version": "0.0.2",
"license": "MIT",
"publisher": "saeris",
"repository": {
"type": "git",
"url": "https://github.com/saeris/markdown-github-alerts.git"
},
"engines": {
"vscode": "^1.81.0"
},
"categories": [
"Other"
],
"activationEvents": [],
"main": "./dist/extension.js",
"browser": "./dist/extension.js",
"contributes": {
"markdown.markdownItPlugins": true,
"markdown.previewStyles": [
"./style.css"
]
},
"scripts": {
"build": "vsce package",
"bundle": "rolldown ./extension.js -d dist -f cjs -e vscode -s",
"watch": "npm run bundle -- -w",
"release": "vsce publish",
"vscode:prepublish": "npm run bundle"
},
"dependencies": {
"markdown-it-github-alerts": "1.0.0"
},
"devDependencies": {
"@vscode/vsce": "3.6.2",
"rolldown": "^1.0.0-beta.43"
}
}