forked from pomdtr/vscode-markdown-kroki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 1.98 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
{
"name": "markdown-kroki",
"version": "1.1.2",
"displayName": "Markdown Kroki",
"description": "Adds Kroki diagram support to VS Code's builtin markdown preview",
"icon": "resources/logo.png",
"keywords": [
"kroki",
"markdown",
"diagram",
"preview",
"actdiag",
"blockdiag",
"bpmn",
"bytefield",
"c4plantuml",
"d2",
"dbml",
"diagramsnet",
"ditaa",
"erd",
"excalidraw",
"graphviz",
"mermaid",
"nomnoml",
"nwdiag",
"packetdiag",
"pikchr",
"plantuml",
"rackdiag",
"seqdiag",
"structurizr",
"svgbob",
"umlet",
"vega",
"vegalite",
"wavedrom",
"wireviz"
],
"publisher": "pomdtr",
"license": "MIT",
"repository": {
"url": "https://github.com/pomdtr/vscode-markdown-kroki.git"
},
"bugs": {
"url": "https://github.com/pomdtr/vscode-markdown-kroki/issues"
},
"engines": {
"vscode": "^1.69.1"
},
"activationEvents": [],
"main": "./dist/index.js",
"categories": [
"Other"
],
"contributes": {
"configuration": {
"title": "markdown-kroki",
"properties": {
"markdown-kroki.url": {
"type": "string",
"description": "The URL of the Kroki server",
"default": "https://kroki.io"
},
"markdown-kroki.prefix": {
"type": "string",
"description": "The prefix to add in front of the diagram type name, eg \"kroki-\"",
"default": ""
}
}
},
"markdown.markdownItPlugins": true
},
"dependencies": {
"node-fetch": "^3.3.2",
"pako": "^2.0.4"
},
"devDependencies": {
"@types/vscode": "^1.69.1",
"ts-loader": "^9.2.5",
"typescript": "^4.4.2",
"webpack": "^5.52.0",
"webpack-cli": "^4.8.0"
},
"scripts": {
"watch": "webpack --watch --config ./build/webpack.config.js --mode development",
"package": "webpack --mode production --config ./build/webpack.config.js",
"vscode:prepublish": "npm run package"
}
}