forked from wushuaibuaa/autocomplete-en-en
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 1.23 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
{
"name": "autocomplete-sa",
"main": "./lib/autocomplete-sa",
"version": "0.0.1",
"author": "Sasnskrit coders <sanskrit-programmers@googlegroups.com>",
"description": "Sanskrit word autocompetion with the hint of explanation.",
"repository": "https://github.com/sanskrit-coders/autocomplete-sa",
"license": "MIT",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"keywords": [
"autocomplete",
"English",
"words",
"Explnaation",
"fuzzy"
],
"configSchema": {
"FileType": {
"type": "string",
"default": ".text.plain, .text.plain.null-grammar, .text.tex.latex, .source.gfm",
"description": "List of scopes for typing which will be given the word completion. See [the README](https://github.com/sanskrit-coders/autocomplete-sa/blob/master/README.md) for more information on finding the correct scope for a specific language."
},
"dictCategories": {
"type": "string",
"default": "declined,kaavya,stem",
"description": "Dictionary categories to enable. Options: declined,kaavya,veda,stem"
}
},
"dependencies": {
"fuzzaldrin": "^2.1.0"
},
"providedServices": {
"autocomplete.provider": {
"versions": {
"2.0.0": "getProvider"
}
}
}
}