-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
62 lines (62 loc) · 1.48 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
{
"name": "coc-smartf",
"version": "1.2.1",
"description": "Smart find extension for coc.nvim",
"main": "lib/index.js",
"publisher": "chemzqm",
"keywords": [
"coc.nvim",
"smartf"
],
"repository": {
"type": "git",
"url": "git+https://github.com/neoclide/coc-smartf.git"
},
"engines": {
"coc": "^0.0.73"
},
"scripts": {
"build": "node esbuild.js",
"prepare": "node esbuild.js"
},
"activationEvents": [
"*"
],
"contributes": {
"configuration": {
"type": "object",
"properties": {
"smartf.timeout": {
"type": "number",
"default": 1000,
"description": "Timeout for jump select."
},
"smartf.jumpOnTrigger": {
"type": "boolean",
"default": true,
"description": "Jump to first available character on trigger."
},
"smartf.wordJump": {
"type": "boolean",
"default": true,
"description": "Consider first word character for jump only."
},
"smartf.charactersIgnoreByNavigator": {
"type": "array",
"default": [],
"description": "Characters will not become a character for navigator"
}
}
}
},
"author": "chemzqm@gmail.com",
"license": "MIT",
"devDependencies": {
"@chemzqm/tsconfig": "^0.0.3",
"@types/node": "^12.12.0",
"coc.nvim": "^0.0.81-next.6",
"esbuild": "^0.12.22",
"typescript": "^4.1.3"
},
"dependencies": {}
}