forked from kaishuu0123/vscode-erd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.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
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "vscode-erd-preview",
"displayName": "ERD Preview",
"description": "An extension for Visual Studio Code to preview erd(.er) files",
"version": "4.0.3",
"publisher": "kaishuu0123",
"engines": {
"vscode": "^1.25.0"
},
"categories": [
"Programming Languages",
"Other"
],
"keywords": [
"dot",
"preview",
"diagram",
"ERD",
"snippet"
],
"activationEvents": [
"onCommand:erd-preview.showPreview",
"onCommand:erd-preview.saveSvgPreview",
"onCommand:erd-preview.savePngPreview",
"onCommand:erd-preview.savePdfPreview",
"onWebviewPanel:erd-preview"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "erd-preview.showPreview",
"title": "Preview Current Window",
"category": "ERD"
},
{
"command": "erd-preview.saveSvgPreview",
"title": "Save as SVG",
"category": "ERD"
},
{
"command": "erd-preview.savePngPreview",
"title": "Save as PNG (graphviz dot command only)",
"category": "ERD"
},
{
"command": "erd-preview.savePdfPreview",
"title": "Save as PDF",
"category": "ERD"
}
],
"configuration": {
"title": "ERD Preview",
"properties": {
"erd-preview.erdPath": {
"description": "The path of the erd program.",
"type": [
"string",
"null"
],
"default": null,
"isExecutable": true
},
"erd-preview.dotPath": {
"description": "The path of the dot program.",
"type": [
"string",
"null"
],
"default": null,
"isExecutable": true
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./ && webpack",
"preextension:watch": "webpack",
"extension:watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^7.0.43",
"ts-loader": "^5.3.3",
"typescript": "^2.9.2",
"vscode": "^1.1.26",
"webpack": "^4.28.3",
"webpack-cli": "^3.2.0"
},
"icon": "icon.png",
"repository": {
"type": "git",
"url": "https://github.com/kaishuu0123/vscode-erd"
},
"dependencies": {
"preact": "^8.3.1",
"redux-zero": "^4.15.2"
}
}