-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
89 lines (89 loc) · 2.99 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
{
"name": "mermaid-export",
"displayName": "Mermaid Export",
"description": "Export mermaid diagrams to image files",
"icon": "icon.png",
"version": "0.0.8",
"publisher": "Gruntfuggly",
"repository": "https://github.com/Gruntfuggly/mermaid-export",
"engines": {
"vscode": "^1.5.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./extension",
"contributes": {
"commands": [
{
"command": "mermaid-export.export",
"title": "Mermaid Export: Export"
},
{
"command": "mermaid-export.showLog",
"title": "Mermaid Export: Show Log"
}
],
"configuration": {
"type": "object",
"title": "Mermaid Export",
"properties": {
"mermaid-export.outputType": {
"type": "string",
"enum": [
"svg",
"png",
"pdf"
],
"description": "Export format",
"default": "png"
},
"mermaid-export.theme": {
"type": "string",
"enum": [
"default",
"dark",
"forest",
"neutral"
],
"markdownDescription": "Colour theme to use",
"default": "default"
},
"mermaid-export.outputWidth": {
"type": "integer",
"markdownDescription": "Override the width of the output diagram (set to 0 for automatic sizing)",
"default": 0
},
"mermaid-export.outputHeight": {
"type": "integer",
"markdownDescription": "Override the height of the output diagram (set to 0 for automatic sizing)",
"default": 0
},
"mermaid-export.config": {
"type": "string",
"markdownDescription": "A file containing extra mermaid [configuration options](https://mermaidjs.github.io/mermaidAPI.html) - can be absolute, or relative to workspace folder",
"default": ""
},
"mermaid-export.css": {
"type": "string",
"markdownDescription": "A file containing CSS styling - can be absolute, or relative to workspace folder",
"default": ""
}
}
}
},
"dependencies": {
"mermaid.cli": "^0.5.1"
},
"devDependencies": {
"vscode": "^1.0.0"
},
"__metadata": {
"id": "ad521f2a-72b5-40e3-b753-7e074a84f90b",
"publisherDisplayName": "Gruntfuggly",
"publisherId": "d4906d2e-f2ee-492d-9c7c-02b6160599ec"
}
}