forked from neoclide/coc-tabnine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 2.89 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
{
"name": "coc-tabnine",
"version": "1.3.5",
"description": "tabnine extension for coc.nvim",
"main": "lib/index.js",
"publisher": "chemzqm",
"keywords": [
"coc.nvim",
"tabnine"
],
"engines": {
"coc": "^0.0.80"
},
"scripts": {
"prepare": "node esbuild.js"
},
"activationEvents": [
"*"
],
"contributes": {
"commands": [
{
"title": "Open configuration file of tabnine.",
"command": "tabnine.openConfig"
},
{
"title": "Download latest version of tabnine.",
"command": "tabnine.updateTabNine"
}
],
"configuration": {
"type": "object",
"properties": {
"tabnine.shortcut": {
"type": "string",
"default": "TN",
"description": "shortcut for tabnine source."
},
"tabnine.triggers": {
"type": "array",
"default": [],
"description": "Trigger characters for TabNine source",
"items": {
"type": "string"
}
},
"tabnine.limit": {
"type": "number",
"default": 10,
"description": "Limit max completion item count from tabnine."
},
"tabnine.priority": {
"type": "number",
"default": 999,
"description": "Priority of tabnine source"
},
"tabnine.filetypes": {
"type": [
"array",
null
],
"default": null,
"description": "Enabled filetypes for completion, default to all filetypes."
},
"tabnine.binary_path": {
"type": "string",
"default": "",
"description": "Use binary at specific path"
},
"tabnine.disable_filetypes": {
"type": "array",
"default": [],
"description": "Disable TabNine for configured filetypes."
},
"tabnine.disable_file_regex": {
"type": "array",
"default": [],
"description": "Disable TabNine when the file path contains a match of any of the provided regexes. For example, add \"[.]js$\" to disable TabNine in JavaScript files."
},
"tabnine.disable_line_regex": {
"type": "array",
"default": [],
"description": "Disable TabNine when the current line contains a match of any of the provided regexes. For example, add \"require\" to disable TabNine when the current line contains the word 'require'."
}
}
}
},
"author": "[email protected]",
"license": "MIT",
"devDependencies": {
"@chemzqm/tsconfig": "^0.0.3",
"@types/node": "^10.12.0",
"@types/semver": "^6.0.2",
"@types/fs-extra": "^9.0.6",
"await-semaphore": "^0.1.3",
"coc.nvim": "^0.0.81-next.1",
"esbuild": "^0.8.29",
"semver": "^6.2.0",
"tunnel": "^0.0.6",
"typescript": "^4.1.3",
"fs-extra": "^9.0.1"
},
"dependencies": {}
}