-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
83 lines (83 loc) · 2.01 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-pairs",
"version": "1.4.2",
"description": "Auto pair extension for coc.nvim",
"main": "lib/index.js",
"publisher": "chemzqm",
"repository": {
"type": "git",
"url": "https://github.com/neoclide/coc-pairs.git"
},
"keywords": [
"coc.nvim",
"autopair"
],
"engines": {
"coc": "^0.0.80"
},
"scripts": {
"clean": "rimraf lib",
"build": "tsc -p tsconfig.json",
"prepare": "tsc -p tsconfig.json"
},
"activationEvents": [
"*"
],
"contributes": {
"configuration": {
"type": "object",
"properties": {
"pairs.disableLanguages": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"scope": "application",
"description": "A list of languages IDs to disable this extension on"
},
"pairs.enableCharacters": {
"type": "array",
"scope": "application",
"items": {
"type": "string"
},
"default": [
"(",
"[",
"{",
"<",
"'",
"\"",
"`"
],
"description": "Enabled character list for keymap."
},
"pairs.alwaysPairCharacters": {
"type": "array",
"scope": "application",
"items": {
"type": "string"
},
"default": [],
"description": "Characters that should be paired without check for next character."
},
"pairs.enableBackspace": {
"type": "boolean",
"scope": "application",
"description": "Remap your backspce to delete paired characters when necessary, won't work when <bs> already mapped.",
"default": true
}
}
}
},
"author": "chemzqm@gmail.com",
"license": "MIT",
"devDependencies": {
"@chemzqm/tsconfig": "^0.0.3",
"@types/node": "^12.12.0",
"coc.nvim": "^0.0.83-next.16",
"typescript": "^4.9.3"
},
"dependencies": {}
}