forked from mjbvz/vscode-markdown-mermaid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.9 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
{
"name": "markdown-mermaid",
"version": "1.14.0",
"displayName": "Markdown Preview Mermaid Support",
"description": "Adds Mermaid diagram and flowchart support to VS Code's builtin markdown preview",
"icon": "resources/logo.png",
"keywords": [
"mermaid",
"markdown",
"flowchart",
"diagram",
"preview"
],
"publisher": "bierner",
"license": "MIT",
"repository": {
"url": "https://github.com/mjbvz/vscode-markdown-mermaid.git"
},
"bugs": {
"url": "https://github.com/mjbvz/vscode-markdown-mermaid/issues"
},
"engines": {
"vscode": "^1.15.0"
},
"activationEvents": [],
"main": "./dist/index.js",
"browser": "./dist/web/index.js",
"categories": [
"Other"
],
"contributes": {
"markdown.previewScripts": [
"./page.bundle.js"
],
"markdown.previewStyles": [
"./page.css"
],
"markdown.markdownItPlugins": true
},
"dependencies": {
"markdown-it-container": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"babel-loader": "^8.2.2",
"css-loader": "^2.1.1",
"mermaid": "^9.1.1",
"mini-css-extract-plugin": "^2.2.2",
"style-loader": "^3.2.1",
"terser-webpack-plugin": "^2.3.8",
"ts-loader": "^9.2.5",
"typescript": "^4.4.2",
"webpack": "^5.52.0",
"webpack-cli": "^4.8.0"
},
"scripts": {
"build-mermaid": "webpack --mode=production --config ./build/mermaid.webpack.config.js",
"watch": "webpack --watch --config ./build/webpack.config.js",
"package": "webpack --mode production --config ./build/webpack.config.js",
"lint": "eslint -c .eslintrc.js --ext .ts src",
"vscode:prepublish": "npm run package ; npm run package-web ; npm run build-mermaid",
"watch-web": "webpack --watch --config ./build/web-extension.webpack.config.js",
"package-web": "webpack --mode production --devtool hidden-source-map --config ./build/web-extension.webpack.config.js"
}
}