-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
276 lines (276 loc) · 8.45 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
267
268
269
270
271
272
273
274
275
276
{
"name": "spellright",
"displayName": "Spell Right",
"description": "Multilingual, Offline and Lightweight Spellchecker",
"version": "3.0.140",
"publisher": "ban",
"engines": {
"vscode": "^1.80.0"
},
"extensionKind": [
"ui"
],
"categories": [
"Other"
],
"keywords": [
"spell",
"checker",
"spellchecker",
"multi-language",
"offline"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./src/extension",
"contributes": {
"configuration": {
"type": "object",
"title": "Spell Right configuration",
"properties": {
"spellright.language": {
"type": "array",
"default": [],
"scope": "resource",
"description": "Default language set (dictionary/region) used for spelling."
},
"spellright.documentTypes": {
"type": "array",
"default": [
"markdown",
"latex",
"plaintext"
],
"scope": "resource",
"description": "Document types for which spelling will be turned ON by default."
},
"spellright.configurationUpdate": {
"type": "boolean",
"default": true,
"scope": "resource",
"description": "Enable/disable automatic update of configuration from GUI operations."
},
"spellright.configurationScope": {
"type": "string",
"enum": [
"user",
"workspace"
],
"default": "workspace",
"scope": "resource",
"description": "Scope for automatic configuration update."
},
"spellright.groupDictionaries": {
"type": "boolean",
"default": true,
"scope": "resource",
"description": "Enable/disable grouping of dictionaries by language."
},
"spellright.recheckOnSave": {
"type": "boolean",
"default": true,
"scope": "resource",
"description": "Enable/disable spelling of entire document on save."
},
"spellright.statusBarIndicator": {
"type": "boolean",
"default": true,
"scope": "resource",
"description": "Enable/disable language & status indicator switch in status bar."
},
"spellright.suggestionsInHints": {
"type": "boolean",
"default": true,
"scope": "resource",
"description": "Enable/disable including suggested corrections in hints."
},
"spellright.addToSystemDictionary": {
"type": "boolean",
"default": false,
"scope": "resource",
"description": "Enable/disable adding words to system custom spelling dictionary instead of user dictionary."
},
"spellright.ignoreRegExps": {
"type": "array",
"default": [],
"scope": "resource",
"description": "Regular expressions to eliminate from spelling."
},
"spellright.ignoreRegExpsByClass": {
"type": "object",
"default": {},
"scope": "resource",
"description": "Regular expressions to eliminate from spelling per document type."
},
"spellright.ignoreFiles": {
"type": "array",
"default": [
"**/.gitignore",
"**/.spellignore"
],
"scope": "resource",
"description": "List of file patterns ignored during spelling."
},
"spellright.notificationClass": {
"type": "string",
"enum": [
"error",
"warning",
"information",
"hint"
],
"default": "error",
"scope": "resource",
"description": "Assign class of diagnostic messages produced by SpellRight."
},
"spellright.notificationClassByParser": {
"type": "object",
"default": {},
"scope": "resource",
"description": "Assign class of diagnostic messages produced by SpellRight per parser."
},
"spellright.spellContext": {
"type": "string",
"default": "body comments strings",
"scope": "resource",
"description": "Decide which syntactic parts of documents are spelled by default."
},
"spellright.spellContextByClass": {
"type": "object",
"default": {},
"scope": "resource",
"description": "Decide which syntactic parts of documents are spelled per document type."
},
"spellright.languageContext": {
"type": "object",
"default": {},
"scope": "resource",
"description": "Decide which language is used to spell syntactic parts of documents."
},
"spellright.languageContextByClass": {
"type": "object",
"default": {},
"scope": "resource",
"description": "Decide which language is used to spell syntactic parts of documents per document type."
},
"spellright.parserByClass": {
"type": "object",
"default": {},
"scope": "resource",
"description": "Decide which parser and its configuration to use per document type."
},
"spellright.latexSpellParameters": {
"type": "array",
"default": [
"author",
"title",
"subtitle",
"date",
"chapter",
"section\\*?",
"subsection\\*?",
"subsubsection\\*?",
"part",
"paragraph",
"subparagraph",
"text(rm|sf|tt|md|bf|up|it|sl|sc|normal)",
"underline",
"emph",
"item",
"footnote(text)?",
"caption(of)?",
"subcaption(of)?",
"multicolumn",
"href",
"hyperref",
"institute",
"frametitle",
"framesubtitle",
"begin\\{frame\\}"
],
"scope": "resource",
"description": "List of LaTeX commands that will have the parameter list spell checked."
},
"spellright.useDocumentSymbolsInCode": {
"type": "boolean",
"default": true,
"scope": "resource",
"description": "Enable/disable using document symbols when spelling using code parser (source code documents)."
}
}
},
"commands": [
{
"command": "spellright.configurationUpdate",
"title": "SpellRight: Configuration Update"
},
{
"command": "spellright.selectDictionary",
"title": "SpellRight: Select Dictionary (Language)"
},
{
"command": "spellright.setCurrentTypeOFF",
"title": "SpellRight: Turn OFF for Current Document Type"
},
{
"command": "spellright.openWorkspaceDictionary",
"title": "SpellRight: Open Workspace Dictionary File"
},
{
"command": "spellright.openUserDictionary",
"title": "SpellRight: Open User Dictionary File"
},
{
"command": "spellright.addFromSelectionToWorkspaceDictionary",
"title": "SpellRight: Add Selection to Workspace Dictionary"
},
{
"command": "spellright.addFromSelectionToUserDictionary",
"title": "SpellRight: Add Selection to User Dictionary"
}
],
"keybindings": []
},
"scripts": {
"test": "node ./node_modules/vscode/bin/test"
},
"dependencies": {
"any-promise": "^1.3.0",
"fs": "0.0.1-security",
"glob": "^9.3.0",
"growl": "^1.10.5",
"ignore": "^5.3.1",
"jsonminify": "^0.4.2",
"mkdirp": "^3.0.1",
"nan": "^2.19.0",
"node-gyp": "^10.1.0",
"opn": "^5.1.0",
"os-locale": "^5.0.0",
"path": "^0.12.7",
"xregexp": "^5.1.1"
},
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "^20.12.7",
"electron": "^28.2.10",
"@electron/rebuild": "^3.2.9",
"eslint": "^9.0.0",
"mocha": "^10.4.0"
},
"icon": "icon.png",
"license": "SEE LICENSE IN LICENSE.md",
"homepage": "https://github.com/bartosz-antosik/vscode-spellright",
"repository": {
"type": "git",
"url": "https://github.com/bartosz-antosik/vscode-spellright.git"
},
"bugs": {
"url": "https://github.com/bartosz-antosik/vscode-spellright/issues"
},
"__metadata": {
"id": "f6e8f06b-e4dc-40e4-83d6-afd7ef0f3e44",
"publisherId": "2274a5e4-f24b-4cd7-9d0b-d00ca3d481b1",
"publisherDisplayName": "Bartosz Antosik"
}
}