-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1 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
{
"name": "coc-nerdfont",
"version": "0.0.1",
"description": "coc.nvim source for nerdfont icons",
"author": "Wu, Zhenyu <wuzhenyu@ustc.edu>",
"license": "MIT",
"main": "lib/index.js",
"keywords": [
"coc.nvim"
],
"engines": {
"coc": "^0.0.82"
},
"scripts": {
"watch": "node esbuild.mjs --watch",
"prepack": "scripts/generate-items.json.js && node esbuild.mjs"
},
"devDependencies": {
"coc.nvim": "^0.0.83-next.18",
"esbuild": "^0.19.8",
"typescript": "^5.3.3"
},
"activationEvents": [
"*"
],
"contributes": {
"configuration": {
"type": "object",
"title": "coc-nerdfont configuration",
"properties": {
"coc.source.nerdfont.enable": {
"type": "boolean",
"default": true
},
"coc.source.nerdfont.priority": {
"type": "integer",
"default": 1
},
"coc.source.nerdfont.shortcut": {
"type": "string",
"default": ""
}
}
}
}
}