-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
139 lines (139 loc) · 3.32 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "TabOut",
"displayName": "TabOut",
"description": "Tab out of quotes, brackets, etc",
"version": "0.2.2",
"publisher": "albert",
"engines": {
"vscode": "^1.22.0"
},
"bugs": {
"url": "https://github.com/albertromkes/tabout/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/albertromkes/tabout",
"repository": {
"type": "git",
"url": "https://github.com/albertromkes/tabout.git"
},
"icon": "images/Tab-Key.jpg",
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./out/src/extension",
"contributes": {
"configuration": {
"type": "object",
"title": "TabOut configuration",
"properties": {
"tabout.disableByDefault": {
"type": "boolean",
"default": false,
"description": "Disables the TabOut extension by default"
},
"tabout.charactersToTabOutFrom": {
"type": "array",
"description": "Sets of opening and closing character pairs to be able to tab out from.",
"default": [
{
"open": "[",
"close": "]"
},
{
"open": "{",
"close": "}"
},
{
"open": "(",
"close": ")"
},
{
"open": "'",
"close": "'"
},
{
"open": "\"",
"close": "\""
},
{
"open": ":",
"close": ":"
},
{
"open": "=",
"close": "="
},
{
"open": ">",
"close": ">"
},
{
"open": "<",
"close": "<"
},
{
"open": ".",
"close": "."
},
{
"open": "`",
"close": "`"
},
{
"open": ";",
"close": ";"
}
],
"items": {
"type": "object",
"required": [
"open",
"close"
],
"properties": {
"open": {
"type": "string",
"description": "The opening character of the pair (e.g. for a pair of square brackets, '[')."
},
"close": {
"type": "string",
"description": "The closing character of the pair (e.g. for a pair of square brackets, ']')."
}
}
}
}
}
},
"commands": [
{
"command": "toggle-tabout",
"title": "Toggle TabOut"
}
],
"keybindings": [
{
"command": "tabout",
"key": "tab",
"mac": "tab",
"when": "editorTextFocus && !suggestWidgetVisible && !inlineSuggestionVisible && !inSnippetMode && !editorHasMultipleSelections"
}
]
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"typescript": "4.3.5",
"vscode": "1.1.37",
"@types/node": "^6.0.40",
"@types/mocha": "^2.2.32"
},
"dependencies": {
"minimist": "^1.2.6"
}
}