-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
84 lines (84 loc) · 2.11 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
{
"name": "coc-yank",
"version": "1.2.3",
"description": "Yank extension for coc.nvim",
"main": "lib/index.js",
"publisher": "chemzqm",
"keywords": [
"coc.nvim",
"yank",
"colors"
],
"repository": {
"type": "git",
"url": "git+https://github.com/neoclide/coc-yank.git"
},
"engines": {
"coc": "^0.0.82"
},
"scripts": {
"build": "node esbuild.js",
"prepare": "node esbuild.js"
},
"activationEvents": [
"*"
],
"contributes": {
"configuration": {
"type": "object",
"properties": {
"yank.highlight.enable": {
"type": "boolean",
"default": true,
"description": "Enable highlight of yanked text."
},
"yank.highlight.duration": {
"type": "number",
"default": 500,
"description": "Duration of highlight"
},
"yank.list.maxsize": {
"type": "number",
"default": 300,
"description": "Maximum size of preserved yank list."
},
"yank.byteLengthLimit": {
"type": "number",
"default": 10240,
"description": "Maximum byte length of yanked text which could be preserved."
},
"yank.enableCompletion": {
"type": "boolean",
"description": "Enable completion support for yanked text.",
"default": true
},
"yank.priority": {
"type": "integer",
"description": "Priority of yank completion source.",
"default": 90
},
"yank.limit": {
"type": "integer",
"description": "Max completion item count from yank history.",
"default": 3
}
}
}
},
"author": "[email protected]",
"license": "MIT",
"devDependencies": {
"@chemzqm/tsconfig": "^0.0.3",
"@types/colors": "^1.2.1",
"@types/node": "10.12.0",
"esbuild": "^0.17.19",
"coc.nvim": "^0.0.82",
"colors": "^1.3.3",
"rimraf": "^2.6.3",
"typescript": "^4.1.3",
"vscode-languageserver-protocol": "^3.15.3",
"webpack": "^4.35.0",
"webpack-cli": "^3.3.5"
},
"dependencies": {}
}