-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
166 lines (166 loc) · 5.56 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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
{
"name": "auto-close-tag",
"displayName": "Auto Close Tag",
"description": "Automatically add HTML/XML close tag, same as Visual Studio IDE or Sublime Text",
"version": "0.5.15",
"publisher": "formulahendry",
"icon": "images/logo.png",
"engines": {
"vscode": "^1.49.0"
},
"categories": [
"Other",
"Programming Languages"
],
"keywords": [
"AutoComplete",
"close",
"tag",
"html",
"xml",
"multi-root ready"
],
"bugs": {
"url": "https://github.com/formulahendry/vscode-auto-close-tag/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/formulahendry/vscode-auto-close-tag/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/formulahendry/vscode-auto-close-tag.git"
},
"extensionKind": [
"ui",
"workspace"
],
"activationEvents": [
"*",
"onCommand:auto-close-tag.closeTag"
],
"main": "./out/src/extension",
"capabilities": {
"untrustedWorkspaces": {
"supported": true
},
"virtualWorkspaces": true
},
"contributes": {
"commands": [
{
"command": "auto-close-tag.closeTag",
"title": "Close Tag"
}
],
"keybindings": [
{
"command": "auto-close-tag.closeTag",
"key": "alt+.",
"mac": "cmd+alt+."
}
],
"configuration": {
"type": "object",
"title": "Auto Close Tag configuration",
"properties": {
"auto-close-tag.activationOnLanguage": {
"type": "array",
"default": [
"xml",
"php",
"blade",
"ejs",
"glimmer-js",
"glimmer-ts",
"jinja",
"javascript",
"javascriptreact",
"typescript",
"typescriptreact",
"plaintext",
"markdown",
"vue",
"liquid",
"erb",
"lang-cfml",
"cfml",
"HTML (EEx)",
"HTML (Eex)",
"plist"
],
"description": "Set the languages that the extension will be activated. e.g. [\"html\",\"xml\",\"php\"]. Use [\"*\"] to activate for all languages.",
"scope": "resource"
},
"auto-close-tag.disableOnLanguage": {
"type": "array",
"default": [],
"description": "Set the languages where the extension will be disabled. e.g. [\"html\",\"xml\",\"php\"].",
"scope": "resource"
},
"auto-close-tag.excludedTags": {
"type": "array",
"default": [
"area",
"base",
"br",
"col",
"command",
"embed",
"hr",
"img",
"input",
"keygen",
"link",
"meta",
"param",
"source",
"track",
"wbr"
],
"description": "Set the tag list that would not be auto closed.",
"scope": "resource"
},
"auto-close-tag.SublimeText3Mode": {
"type": "boolean",
"default": false,
"description": "Auto close tag when </ is typed, same as Sublime Text 3",
"scope": "resource"
},
"auto-close-tag.enableAutoCloseTag": {
"type": "boolean",
"default": true,
"description": "Whether to insert close tag automatically",
"scope": "resource"
},
"auto-close-tag.enableAutoCloseSelfClosingTag": {
"type": "boolean",
"default": true,
"description": "Whether to close self-closing tag automatically",
"scope": "resource"
},
"auto-close-tag.insertSpaceBeforeSelfClosingTag": {
"type": "boolean",
"default": false,
"description": "Insert a space before the forward slash in a self-closing tag.",
"scope": "resource"
},
"auto-close-tag.fullMode": {
"type": "boolean",
"default": false,
"description": "Enable both Visual Studio and Sublime Text mode",
"scope": "resource"
}
}
}
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./"
},
"devDependencies": {
"@types/mocha": "^2.2.32",
"@types/node": "^6.0.40",
"@types/vscode": "^1.49.0",
"mocha": "^2.3.3",
"typescript": "^3.9.10"
}
}