-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
102 lines (102 loc) · 2.15 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": "5.0.0",
"publisher": "kaishuu0123",
"engines": {
"vscode": "^1.44.0"
},
"categories": [
"Programming Languages",
"Other"
],
"keywords": [
"dot",
"preview",
"diagram",
"ERD",
"snippet"
],
"activationEvents": [
"onCommand:erd-preview.showPreview",
"onWebviewPanel:erd-preview.showPreview"
],
"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": {
"type": "object",
"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 ./",
"watch": "tsc -watch -p ./",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^7.10.10",
"@types/vscode": "^1.44.0",
"ts-loader": "^5.4.5",
"tslint": "^6.1.2",
"tslint-react": "^5.0.0",
"typescript": "^3.9.6",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"icon": "icon.png",
"repository": {
"type": "git",
"url": "https://github.com/kaishuu0123/vscode-erd"
},
"dependencies": {
"preact": "^8.3.1",
"redux-zero": "^4.15.0"
}
}