-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.29 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.29 KB
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
{
"name": "coc-zshell",
"version": "0.0.5",
"description": "Zsh completion support for coc.nvim using native zsh completion system",
"author": "Doruk Özer <dorukozer@protonmail.com>",
"license": "MIT",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/dorukozerr/coc-zshell.git"
},
"keywords": [
"coc.nvim",
"zsh",
"zshell",
"completion",
"autocomplete"
],
"files": [
"lib",
"bin"
],
"engines": {
"coc": "^0.0.82"
},
"scripts": {
"watch": "node esbuild.mjs --watch",
"build": "node esbuild.mjs",
"prepare": "node esbuild.mjs"
},
"devDependencies": {
"@types/node": "^24.10.1",
"coc.nvim": "^0.0.82",
"esbuild": "^0.27.0",
"typescript": "^5.3.3"
},
"activationEvents": [
"onLanguage:zsh"
],
"contributes": {
"configuration": {
"type": "object",
"title": "coc-zshell configuration",
"properties": {
"coc-zshell.enabled": {
"type": "boolean",
"default": true,
"description": "Enable coc-zshell extension"
},
"coc-zshell.timeout": {
"type": "number",
"default": 5000,
"description": "Timeout for completion requests in milliseconds"
}
}
}
}
}