-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
217 lines (217 loc) · 6.1 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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
{
"name": "hq-live-server",
"displayName": "HQ Live Server",
"description": "Lightning fast, zero configuration, web application development server with livereload",
"publisher": "hqjs",
"version": "0.0.11",
"author": {
"name": "HQJS",
"email": "[email protected]",
"url": "https://hqjs.org"
},
"engines": {
"vscode": "^1.36.0"
},
"categories": [
"Other"
],
"keywords": [
"web app preview",
"spa preview",
"react preview",
"angular preview",
"polymer preview",
"svelte preview",
"vue preview",
"html preview",
"live preview",
"live reload",
"web server",
"open in browser",
"multi-root ready"
],
"galleryBanner": {
"color": "#333333",
"theme": "dark"
},
"activationEvents": [
"*"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "extension.hqServer.start",
"title": "Serve project",
"category": "HQ Live Server",
"icon": "./images/broadcast.png"
},
{
"command": "extension.hqServer.stop",
"title": "Stop server",
"category": "HQ Live Server",
"icon": "./images/zap.png"
},
{
"command": "extension.hqServer.build",
"title": "Build project",
"category": "HQ Live Server",
"icon": "./images/package.png"
},
{
"command": "extension.hqServer.buildResource",
"title": "Build resource",
"category": "HQ Live Server",
"icon": "./images/package.png"
}
],
"keybindings": [
{
"command": "extension.hqServer.start",
"key": "alt+H alt+O",
"when": "editorTextFocus",
"mac": "cmd+H cmd+O"
},
{
"command": "extension.hqServer.stop",
"key": "alt+H alt+C",
"when": "editorTextFocus",
"mac": "cmd+H cmd+C"
},
{
"command": "extension.hqServer.build",
"key": "alt+H alt+B",
"when": "editorTextFocus",
"mac": "cmd+H cmd+B"
},
{
"command": "extension.hqServer.buildResource",
"key": "alt+H alt+R",
"when": "editorTextFocus",
"mac": "cmd+H cmd+R"
}
],
"menus": {
"editor/context": [
{
"command": "extension.hqServer.start",
"group": "hqGroup@hqServer"
},
{
"command": "extension.hqServer.stop",
"group": "hqGroup@hqServer"
},
{
"command": "extension.hqServer.build",
"group": "hqGroup@hqServer"
}
],
"explorer/context": [
{
"command": "extension.hqServer.start",
"group": "navigation@-HQServer"
},
{
"command": "extension.hqServer.stop",
"group": "navigation@-HQServer"
},
{
"command": "extension.hqServer.build",
"group": "navigation@-HQServer"
}
],
"touchBar": [
{
"command": "extension.hqServer.start",
"group": "editing"
},
{
"command": "extension.hqServer.stop",
"group": "editing"
},
{
"command": "extension.hqServer.build",
"group": "editing"
}
]
},
"configuration": {
"title": "HQ Live Server",
"properties": {
"hqServer.defaultPort": {
"type": "number",
"default": 8080,
"minimum": 0,
"maximum": 65535,
"description": "Set Custom Port Number of Live Server."
},
"hqServer.browser.useBuiltinBrowser": {
"type": "boolean",
"default": false,
"description": "Open in Browser Preview inside VS Code, instead of default browser"
},
"hqServer.browser.preferredBrowser": {
"type": "string",
"default": "",
"enum": [
"chrome",
"chrome:PrivateMode",
"firefox",
"firefox:PrivateMode",
"safari",
"microsoft-edge",
"blisk",
""
],
"description": "Specify custom browser settings for HQ Live Server. \nBy Default it will open your default favorite browser."
},
"hqServer.browser.attachChromeDebugger": {
"type": "boolean",
"default": false,
"description": "Enable Chrome Debugging Attachment to HQ Live Server at Debuging Port 9222.\n NOTE: You have to install 'Debugger for Chrome' \nIf the value is true, Select 'Attach to Chrome' from Debug Window to start debugging. \n\n NOTE: You have to chose Preferred Browser to be chrome or blisk to use debugger. \n\n CAUTION: If it is true, 'Launch Chrome against localhost' may not work."
},
"hqServer.browser.browserCmdLine": {
"type": "string",
"default": "",
"description": "Note: If it is not empty, It will override Preferred Browser and Attach Chrome Debugger settings.\n\n Examples : \nchrome --incognito --headless --remote-debugging-port=9222 \n C:\\\\Program Files\\\\Firefox Developer Edition\\\\firefox.exe --private-window"
},
"hqServer.showOnStatusbar": {
"type": "boolean",
"default": true,
"description": "Change this to false if you don't want the button to show in the statusbar"
}
}
}
},
"icon": "images/hqjs.png",
"license": "MIT",
"bugs": {
"url": "https://github.com/hqjs/vscode-hq-live-server/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/hqjs/vscode-hq-live-server.git"
},
"homepage": "https://hqjs.org",
"scripts": {
"test": "node ./test/runTest.js",
"postinstall": "node ./patch-sass.js && npm remove node-sass"
},
"dependencies": {
"@hqjs/hq": "~0.0.31",
"open": "^7.3.0",
"sass": "^1.30.0",
"vsls": "^1.0.3015"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^7.0.2",
"@types/node": "^12.10.0",
"@types/vscode": "^1.36.0",
"eslint": "^7.16.0",
"glob": "^7.1.6",
"mocha": "^7.2.0",
"vscode-test": "^1.4.1"
}
}