This repository has been archived by the owner on Jul 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
102 lines (102 loc) · 2.87 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
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "okazukiplantuml",
"displayName": "okazuki PlantUML",
"description": "VS Code plantuml plugin. You can preview uml diagram.",
"version": "0.2.2",
"publisher": "okazuki",
"engines": {
"vscode": "^1.0.0"
},
"icon": "images/icon.png",
"license": "https://github.com/runceel/plantumlpreview/blob/master/LICENSE",
"bugs": {
"url": "https://github.com/runceel/plantumlpreview/issues"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.previewPlantUML",
"onCommand:extension.exportPlantUML-png",
"onCommand:extension.exportPlantUML-svg",
"onCommand:extension.exportPlantUML-eps",
"onCommand:extension.exportPlantUML-pdf",
"onCommand:extension.exportPlantUML-vdx",
"onCommand:extension.exportPlantUML-xmi",
"onCommand:extension.exportPlantUML-scxml",
"onCommand:extension.exportPlantUML-html",
"onCommand:extension.exportPlantUML-txt",
"onCommand:extension.exportPlantUML-utxt",
"onCommand:extension.exportPlantUML-latex",
"onCommand:extension.exportPlantUML-latex:nopreamble"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "extension.previewPlantUML",
"title": "PlantUML Preview"
},
{
"command": "extension.exportPlantUML-png",
"title": "PlantUML Export PNG"
},
{
"command": "extension.exportPlantUML-svg",
"title": "PlantUML Export SVG"
},
{
"command": "extension.exportPlantUML-eps",
"title": "PlantUML Export EPS"
},
{
"command": "extension.exportPlantUML-pdf",
"title": "PlantUML Export PDF"
},
{
"command": "extension.exportPlantUML-vdx",
"title": "PlantUML Export VDX"
},
{
"command": "extension.exportPlantUML-xmi",
"title": "PlantUML Export XMI"
},
{
"command": "extension.exportPlantUML-scxml",
"title": "PlantUML Export SCXML"
},
{
"command": "extension.exportPlantUML-html",
"title": "PlantUML Export HTML"
},
{
"command": "extension.exportPlantUML-txt",
"title": "PlantUML Export TXT"
},
{
"command": "extension.exportPlantUML-utxt",
"title": "PlantUML Export UTXT"
},
{
"command": "extension.exportPlantUML-latex",
"title": "PlantUML Export LATEX"
},
{
"command": "extension.exportPlantUML-latex:nopreamble",
"title": "PlantUML Export LATEX:NOPREAMBLE"
}
]
},
"scripts": {
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"typescript": "^1.8.5",
"vscode": "^0.11.0"
},
"dependencies": {
"q": "^1.4.1"
}
}