forked from neoclide/coc-smartf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.69 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
{
"name": "coc-smartf",
"version": "1.1.10",
"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": {
"clean": "rimraf lib",
"build": "webpack",
"prepare": "npx npm-run-all clean build"
},
"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",
"@chemzqm/tslint-config": "^1.0.18",
"@types/node": "^11.13.10",
"coc.nvim": "^0.0.69",
"rimraf": "^2.6.3",
"ts-loader": "^6.0.3",
"tslint": "^5.16.0",
"typescript": "^3.5.1",
"webpack": "^4.34.0",
"webpack-cli": "^3.3.4",
"vscode-languageserver-types": "^3.14.0"
},
"dependencies": {}
}