-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
110 lines (110 loc) · 2.66 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
{
"name": "coc-floatinput",
"version": "1.7.0",
"description": "Floating input for coc.nvim",
"author": "Weirong Xu <[email protected]>",
"repository": "[email protected]:weirongxu/coc-floatinput.git",
"license": "MIT",
"types": "lib/index.d.ts",
"main": "lib/index.js",
"keywords": [
"coc.nvim",
"neovim",
"floatwin",
"floatinput"
],
"engines": {
"coc": "^0.0.77"
},
"files": [
"lib",
"autoload"
],
"scripts": {
"clean": "rimraf lib",
"dev": "node watch.js",
"build:type": "tsc --emitDeclarationOnly",
"build:pack": "node build.js",
"build": "run-s build:type build:pack",
"prepare": "run-s clean build",
"lint": "eslint src --ext js,ts",
"test": "run-s lint"
},
"prettier": {
"singleQuote": true,
"printWidth": 80,
"trailingComma": "all",
"semi": false
},
"devDependencies": {
"@raidou/eslint-config-base": "^1.6.0",
"@types/node": "^18.11.18",
"chokidar": "^3.5.3",
"coc.nvim": "0.0.83-next.9",
"eslint": "^8.31.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.2",
"rimraf": "^4.0.4",
"type-fest": "^3.5.1",
"typescript": "^4.9.4"
},
"activationEvents": [
"*"
],
"contributes": {
"configuration": {
"type": "object",
"title": "coc-floatinput configuration",
"properties": {
"floatinput.enabled": {
"type": "boolean",
"default": true,
"description": "Enable coc-floatinput extension"
},
"floatinput.status.enabled": {
"type": "boolean",
"default": false,
"description": "Enable coc-floatinput status window"
},
"floatinput.status.timeout": {
"type": "int",
"default": 1000,
"description": "floatinput status timeout in milliseconds"
},
"floatinput.status.width": {
"type": "int",
"default": 20,
"description": "floatinput status width"
},
"floatinput.status.direction": {
"default": "top-right",
"enum": [
"top-left",
"top-center",
"top-right",
"left-center",
"right-center",
"bottom-left",
"bottom-center",
"bottom-right"
],
"description": "floatinput status position"
}
}
},
"commands": [
{
"command": "floatinput.command",
"title": "floatinput command"
},
{
"command": "floatinput.coc.command",
"title": "floatinput coc command"
}
]
},
"dependencies": {
"coc-helper": "^0.16.0",
"esbuild": "^0.16.17"
}
}