-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
266 lines (266 loc) · 7.56 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
{
"name": "linkcheckerhtml",
"displayName": "HTML / XML / RSS link checker",
"description": "Alt+H checks for broken links in an HTML, XML, RSS, or PHP file. Alt+T sends currently-selected URL to browser. Alt+M sends HTTPS version of currently-selected HTTP URL to browser. Alt+L clears diagnostic messages.",
"author": {
"name": "Bill Dietrich"
},
"icon": "linkcheckerhtmlicon.png",
"version": "6.3.0",
"publisher": "BillDietrich",
"galleryBanner": {
"color": "#0000FF",
"theme": "dark"
},
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/BillDietrich/linkcheckerhtml/issues",
"email": "gith4@billdietrich.me"
},
"homepage": "https://github.com/BillDietrich/linkcheckerhtml/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/BillDietrich/linkcheckerhtml.git"
},
"categories": [
"Linters",
"Other"
],
"keywords": [
"HTML",
"XML",
"RSS",
"PHP",
"Markdown",
"broken",
"link"
],
"engines": {
"vscode": "^1.29.0"
},
"activationEvents": [
"onLanguage:html",
"onLanguage:xml",
"onLanguage:rss",
"onLanguage:php",
"onLanguage:markdown"
],
"main": "./out/extension",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"contributes": {
"commands": [
{
"command": "extension.generateLinkReport",
"title": "Generate a broken-link report",
"category": "HTML",
"when": "editorFocus"
},
{
"command": "extension.openURL",
"title": "Open an URL in the browser",
"category": "HTML",
"when": "editorHasSelection"
},
{
"command": "extension.openURLasHTTPS",
"title": "Open HTTPS equivalent of an HTTP URL in the browser",
"category": "HTML",
"when": "editorHasSelection"
},
{
"command": "extension.clearDiagnostics",
"title": "Clear all diagnostics belonging to this extension",
"category": "HTML"
}
],
"keybindings": [
{
"command": "extension.generateLinkReport",
"key": "Alt+H"
},
{
"command": "extension.openURL",
"key": "Alt+T"
},
{
"command": "extension.openURLasHTTPS",
"key": "Alt+M"
},
{
"command": "extension.clearDiagnostics",
"key": "Alt+L"
}
],
"configuration": [
{
"type": "object",
"title": "HTML / XML / RSS link checker",
"properties": {
"linkcheckerhtml.checkMailtoDestFormat": {
"type": "boolean",
"default": true,
"description": "Check format of email addresses in mailto links."
},
"linkcheckerhtml.maxParallelThreads": {
"type": "number",
"default": 20,
"description": "Maximum number of links to check in parallel (range is 1 to 20)."
},
"linkcheckerhtml.timeout": {
"type": "number",
"default": 15,
"description": "Timeout (seconds) for accessing a link (range is 5 to 30)."
},
"linkcheckerhtml.reportBadChars": {
"type": "string",
"enum": [
"as Error",
"as Warning",
"as Information",
"as Hint",
"Don't report"
],
"default": "as Information",
"description": "Report possible bad characters ?"
},
"linkcheckerhtml.patternBadChars": {
"type": "string",
"default": "[^\\x09-\\x7E]",
"description": "RegEx pattern to match possible bad characters."
},
"linkcheckerhtml.reportPossibleMistakes": {
"type": "string",
"enum": [
"as Error",
"as Warning",
"as Information",
"as Hint",
"Don't report"
],
"default": "as Warning",
"description": "Report possible mistakes such as empty tags or attributes ?"
},
"linkcheckerhtml.patternsPossibleMistakes": {
"type": "string",
"default": " href=\"\", src=\"\", hreef=\",\"></a>,<h1></h1>,<h2></h2>,<h3></h3>,<h4></h4>,<b></b>,<i></i>,<u></u>",
"description": "Comma-separated list of RegEx patterns to match possible mistakes."
},
"linkcheckerhtml.reportNonHandledSchemes": {
"type": "string",
"enum": [
"as Error",
"as Warning",
"as Information",
"as Hint",
"Don't report"
],
"default": "as Information",
"description": "Report links with URI schemes not checked by the checker, such as FTP and Telnet ?"
},
"linkcheckerhtml.reportRedirects": {
"type": "string",
"enum": [
"as Error",
"as Warning",
"as Information",
"as Hint",
"Don't report"
],
"default": "as Warning",
"description": "Report links that get redirected ?"
},
"linkcheckerhtml.reportSemanticErrors": {
"type": "string",
"enum": [
"as Error",
"as Warning",
"as Information",
"as Hint",
"Don't report"
],
"default": "as Information",
"description": "Report errors in semantic HTML tags (main, section, h1, etc) ?"
},
"linkcheckerhtml.localRoot": {
"type": "string",
"default": ".",
"description": "String prepended to links that start with '/'."
},
"linkcheckerhtml.userAgent": {
"type": "string",
"default": "Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:89.0) Gecko/20100101 Firefox/89.0",
"description": "User-Agent value used in Get requests."
},
"linkcheckerhtml.checkInternalLinks": {
"type": "boolean",
"default": true,
"description": "Check #name links to targets inside current file."
},
"linkcheckerhtml.processIdAttributeInAnyTag": {
"type": "boolean",
"default": true,
"description": "#name link can be to any tag with ID attribute inside current file."
},
"linkcheckerhtml.reportHTTPSAvailable": {
"type": "string",
"enum": [
"as Error",
"as Warning",
"as Information",
"as Hint",
"Don't check for HTTPS"
],
"default": "as Information",
"description": "Report if HTTP links have HTTPS equivalents that work ?"
},
"linkcheckerhtml.dontCheckURLsThatStartWith": {
"type": "string",
"default": "127.,192.,localhost,[::1],[FC00:,[FD00:",
"description": "Don't check URLs that start with any sequence in this comma-separated list."
},
"linkcheckerhtml.addExtensionToLocalURLsWithNone": {
"type": "string",
"default": "",
"description": "If a local file URL has no extension, add this extension to the filename before checking."
},
"linkcheckerhtml.torOpenURLCmd1": {
"type": "string",
"default": "sh -c \"xdotool search --onlyvisible --name 'Tor Browser' windowactivate --sync key --clearmodifiers --window 0 ctrl+t type ",
"description": "Run this command (1) to open an URL in Tor Browser ('URL' will be appended)"
},
"linkcheckerhtml.torOpenURLCmd2": {
"type": "string",
"default": "xdotool search --onlyvisible --name 'Tor Browser' windowactivate --sync key --clearmodifiers --window 0 Return",
"description": "Run this command (2) to open an URL in Tor Browser"
}
}
}
]
},
"devDependencies": {
"@types/node": "^8.10.66",
"typescript": "^4.1.3",
"vsce": "^1.95.1",
"vscode": "^1.1.37"
},
"dependencies": {
"array-buffer-to-hex": "^1.0.0",
"axios": "^0.21.1",
"braces": "^3.0.2",
"diff": "^4.0.2",
"event-stream": "^4.0.1",
"fs": "^0.0.1-security",
"fstream": "^1.0.12",
"gulp-untar": "0.0.8",
"path": "^0.12.7",
"tar": "^5.0.5",
"tor-control": "0.0.3",
"tor-request": "^3.1.0"
}
}