-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
83 lines (83 loc) · 2.15 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
{
"name": "coc-highlight",
"version": "2.0.4",
"description": "Highlight extension for coc.nvim",
"main": "lib/index.js",
"publisher": "chemzqm",
"keywords": [
"coc.nvim",
"highlight",
"colors"
],
"engines": {
"coc": "^0.0.82"
},
"scripts": {
"prepare": "node esbuild.js"
},
"activationEvents": [
"*"
],
"contributes": {
"configuration": {
"type": "object",
"title": "Highlight",
"properties": {
"highlight.trace": {
"type": "string",
"default": "messages",
"description": "Trace level for colors highlight.",
"enum": [
"off",
"messages",
"verbose"
]
},
"highlight.disableLanguages": {
"type": "array",
"default": [],
"items": {
"type": "string"
},
"description": "List of filetypes to ignore.",
"scope": "application"
},
"highlight.document.enable": {
"type": "boolean",
"default": true,
"description": "Set to false disable document highlight of current symbol, reload coc.nvim required on change",
"scope": "application"
},
"highlight.colors.enable": {
"type": "boolean",
"default": true,
"description": "Set to false to disable color highlight, reload coc.nvim required on change",
"scope": "application"
},
"highlight.colorNames.enable": {
"type": "boolean",
"default": true,
"description": "Set to false to disable highlight of color names.",
"scope": "application"
}
}
}
},
"author": "[email protected]",
"license": "MIT",
"devDependencies": {
"@chemzqm/tsconfig": "^0.0.3",
"@types/color": "^3.0.3",
"@types/color-name": "^1.1.1",
"@types/debounce": "^3.0.0",
"@types/node": "^14.17",
"coc.nvim": "^0.0.83-next.7",
"color": "^4.2.3",
"color-name": "^1.1.4",
"debounce": "^1.2.0",
"tslib": "^1.9.3",
"esbuild": "^0.15.9",
"vscode-languageserver-protocol": "^3.15.0-next.4"
},
"dependencies": {}
}