-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
111 lines (111 loc) · 3.1 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
{
"name": "coc-vimlsp",
"version": "0.13.1",
"description": "vim language server extension for coc.nvim",
"keywords": [
"coc.nvim",
"vim",
"lsp"
],
"author": "iamcco <ooiss@qq.com>",
"license": "MIT",
"repository": "git@github.com:iamcco/coc-vim.git",
"engines": {
"coc": "^0.0.62"
},
"activationEvents": [
"onLanguage:vim"
],
"contributes": {
"configuration": {
"title": "vim language server configuration",
"properties": {
"vimlsp.debug": {
"type": "boolean",
"default": false,
"description": "enable coc-vimlsp service debug"
},
"vimlsp.filetypes": {
"type": "array",
"default": [
"vim"
],
"items": {
"type": "string"
},
"description": "enable coc-vimlsp for filetypes"
},
"vimlsp.diagnostic.enable": {
"type": "boolean",
"default": true,
"description": "enable diagnostic"
},
"vimlsp.indexes.runtimepath": {
"type": "boolean",
"default": true,
"description": "if index vim's runtimepath files, this will effect the suggest"
},
"vimlsp.indexes.count": {
"type": "number",
"default": 1,
"description": "count of files index at the same time, change to greater will speed up index but will cause high CPU usage for some time"
},
"vimlsp.indexes.gap": {
"type": "number",
"default": 100,
"description": "time gap between parse file, change to smaller will speed up index but will cause high CPU usage for some time"
},
"vimlsp.indexes.projectRootPatterns": {
"type": "array",
"default": [
".git",
"autoload",
"plugin"
],
"items": {
"type": "string"
},
"description": "Names of files used as the mark of project root."
},
"vimlsp.suggest.fromVimruntime": {
"type": "boolean",
"default": true,
"description": "completeitems from vimruntime's vim files"
},
"vimlsp.suggest.fromRuntimepath": {
"type": "boolean",
"default": false,
"description": "completeitems from runtimepath's vim files, if this is true that fromVimruntime is true"
},
"vimlsp.trace.server": {
"type": "string",
"default": "off",
"enum": [
"off",
"messages",
"verbose"
],
"description": "Trace level of vim language server"
}
}
}
},
"main": "./out/index.js",
"scripts": {
"watch": "tsc -w -p ./",
"clean": "rm -rf ./out",
"build": "webpack",
"prepare": "npm-run-all clean build"
},
"devDependencies": {
"@types/node": "^13.13.5",
"coc.nvim": "^0.0.79",
"npm-run-all": "4.1.5",
"ts-loader": "^8.0.11",
"tslib": "^2.0.3",
"typescript": "^4.1.2",
"vim-language-server": "^2.3.1",
"webpack": "^5.6.0",
"webpack-cli": "^4.2.0"
}
}