-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
125 lines (125 loc) · 3.68 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "graphviz-preview",
"version": "1.7.4",
"publisher": "EFanZh",
"engines": {
"vscode": "^1.93.0"
},
"license": "MIT",
"displayName": "Graphviz Preview",
"description": "Preview Graphviz (DOT) files.",
"categories": [
"Programming Languages"
],
"keywords": [
"dot",
"graphviz",
"preview"
],
"main": "./dist/extension.js",
"contributes": {
"languages": [
{
"id": "dot",
"aliases": [
"Graphviz",
"DOT"
],
"extensions": [
".dot",
".gv"
]
}
],
"commands": [
{
"command": "graphviz.showPreviewToSide",
"title": "Open Preview to the Side",
"category": "Graphviz",
"icon": "$(open-preview)"
}
],
"configuration": {
"title": "Graphviz Preview",
"properties": {
"graphvizPreview.dotPath": {
"description": "The path of the dot program.",
"type": "string",
"default": "dot"
},
"graphvizPreview.dotExtraArgs": {
"description": "Extra arguments for the dot program.",
"type": "array",
"default": [],
"items": {
"type": "string"
}
},
"graphvizPreview.engine": {
"description": "The layout engine to use.",
"type": "string",
"enum": [
"dot"
],
"default": "dot"
}
}
},
"menus": {
"editor/title": [
{
"command": "graphviz.showPreviewToSide",
"group": "navigation",
"when": "editorLangId == dot"
}
]
},
"keybindings": [
{
"command": "graphviz.showPreviewToSide",
"key": "ctrl+k v",
"mac": "cmd+k v",
"when": "editorLangId == dot"
}
]
},
"badges": [
{
"url": "https://github.com/EFanZh/Graphviz-Preview/actions/workflows/CI.yml/badge.svg",
"href": "https://github.com/EFanZh/Graphviz-Preview/actions/workflows/CI.yml",
"description": "Build Status"
}
],
"devDependencies": {
"@tsconfig/strictest": "2",
"@types/eslint__js": "8",
"@types/mocha": "10",
"@types/vscode": "1",
"@types/vscode-webview": "1",
"mocha": "10",
"nyc": "17",
"prettier": "3",
"ts-loader": "9",
"ts-node": "10",
"typescript-eslint": "8",
"webpack-cli": "5"
},
"scripts": {
"check-format": "prettier -c .",
"compile": "webpack",
"coverage": "nyc --reporter=html --reporter=text mocha",
"coverage-ci": "nyc --reporter=lcov mocha",
"format": "prettier --write .",
"lint": "eslint --max-warnings=0 projects",
"package": "webpack --devtool hidden-nosources-source-map --mode production",
"test": "mocha",
"vscode:prepublish": "npm run package",
"watch": "webpack --watch",
"watch-tests": "mocha --watch"
},
"icon": "resources/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/EFanZh/Graphviz-Preview"
}
}