-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.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
{
"name": "mini-spell-checker",
"displayName": "Mini Spell Checker",
"description": "A lightweight spell checker extension",
"repository": {
"url": "https://github.com/yanggaoji/mini-spell-checker.git"
},
"version": "1.0.2",
"publisher": "MagicalCarl",
"license": "MIT",
"engines": {
"vscode": "^1.45.0"
},
"categories": [
"Linters"
],
"activationEvents": [
"*"
],
"main": "./extension.js",
"scripts": {
"package": "vsce package",
"publish": "vsce publish"
},
"contributes": {
"commands": [
{
"command": "spellChecker.reloadDictionary",
"title": "Spell Checker: Reload Dictionary"
},
{
"command": "spellChecker.addToUserDictionary",
"title": "Spell Checker: Add Word to User Dictionary"
},
{
"command": "spellChecker.exportUserDictionary",
"title": "Spell Checker: Export User Dictionary"
}
],
"configuration": {
"title": "Mini Spell Checker",
"properties": {
"miniSpellChecker.enabled": {
"type": "boolean",
"default": true,
"description": "Enable/disable the spell checker."
},
"miniSpellChecker.enabledLanguages": {
"type": "array",
"default": [
"plaintext",
"markdown",
"javascript",
"typescript"
],
"items": {
"type": "string"
},
"description": "List of languages in which the spell checker should be enabled."
},
"miniSpellChecker.severityLevel": {
"type": "string",
"enum": [
"error",
"warning",
"information",
"hint"
],
"default": "information",
"description": "The severity level for spelling errors (error = red, warning = yellow, information = blue, hint = light blue)"
}
}
},
"capabilities": {
"hoverProvider": true
}
}
}