This repository has been archived by the owner on Jan 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.69 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
{
"name": "hunspell",
"displayName": "hunspell",
"description": "Hunspell Syntax Highlighting support",
"version": "1.0.0",
"publisher": "streetsidesoftware",
"engines": {
"vscode": "^1.14.0"
},
"categories": [
"Programming Languages"
],
"license": "MIT",
"qna": "marketplace",
"icon": "images/hunspell.png",
"contributes": {
"languages": [
{
"id": "hunspell.aff",
"aliases": [
"Hunspell",
"hunspell",
"aff"
],
"extensions": [
".aff"
],
"configuration": "./language-configuration.json"
},
{
"id": "hunspell.dic",
"aliases": [
"Hunspell",
"hunspell",
"dic"
],
"extensions": [
".dic"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "hunspell.aff",
"scopeName": "source.hunspell.aff",
"path": "./syntaxes/aff.tmLanguage.json"
},
{
"language": "hunspell.dic",
"scopeName": "source.hunspell.dic",
"path": "./syntaxes/dic.tmLanguage.json"
}
]
},
"repository": {
"type": "git",
"url": "https://github.com/Jason3S/vscode-hunspell-ext"
},
"bugs": {
"url": "https://github.com/Jason3S/vscode-hunspell-ext/issues"
}
}