-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
200 lines (200 loc) · 6.25 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
{
"name": "inner-loop-buddy",
"publisher": "codevoid",
"displayName": "Inner Loop Buddy",
"description": "Open a simple browser to a preconfigured URL on demand, or startup",
"repository": {
"type": "git",
"url": "https://github.com/grork/InnerLoopBuddy"
},
"bugs": {
"url": "https://github.com/grork/InnerLoopBuddy/issues/"
},
"homepage": "https://github.com/grork/InnerLoopBuddy/README.md",
"icon": "assets/package_icon.png",
"version": "1.2.0",
"extensionKind": [
"ui"
],
"capabilities": {
"untrustedWorkspaces": {
"supported": true
}
},
"engines": {
"vscode": "^1.66.0"
},
"categories": [
"Other"
],
"keywords": [
"browser",
"preview"
],
"activationEvents": [
"onCommand:inner-loop-buddy.openDefaultUrl",
"onStartupFinished",
"onWebviewPanel:codevoid.inner-loop-buddy.browser.view"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "codevoid.inner-loop-buddy.openDefaultUrl",
"title": "Open Default URL",
"category": "Inner Loop Buddy",
"enablement": "workbenchState != 'empty'"
},
{
"command": "codevoid.inner-loop-buddy.startCriteriaWizard",
"title": "Add configuration to match tasks",
"category": "Inner Loop Buddy",
"enablement": "workbenchState != 'empty'"
},
{
"command": "codevoid.inner-loop-buddy.printTaskCriteriaJson",
"title": "Print Task configuration as matching criteria configuration",
"category": "Inner Loop Buddy",
"enablement": "workbenchState != 'empty'"
}
],
"configuration": [
{
"title": "Inner Loop Buddy",
"properties": {
"codevoid.inner-loop-buddy.defaultUrl": {
"description": "URL to open the browser for",
"type": "string",
"default": null,
"scope": "resource"
},
"codevoid.inner-loop-buddy.autoOpenDelay": {
"description": "Delay (in ms) before opening the browser. Opening the browser may be dependent on the server completing initialization. By setting this value to non-zero, the delay of opening the browser can be configured till after that initialization",
"type": "number",
"scope": "resource",
"default": 0
},
"codevoid.inner-loop-buddy.performAvailabilityCheckBeforeOpeningBrowser": {
"type": "boolean",
"scope": "resource",
"default": true,
"description": "Preconnect to the target host when opening the browser, to ensure it's available"
},
"codevoid.inner-loop-buddy.performAvailabilityCheckBeforeOpeningBrowserTimeout": {
"type": "number",
"scope": "resource",
"default": 1000,
"description": "Timeout for the availability check in milliseconds"
},
"codevoid.inner-loop-buddy.editorColumn": {
"markdownDescription": "Editor column for the browser tab to open in. See the [VS Code Documenation](https://code.visualstudio.com/api/references/vscode-api#ViewColumn) for more details on the behaviour",
"type": "string",
"default": "Beside",
"scope": "resource",
"enum": [
"Active",
"Beside",
"One",
"Two",
"Three",
"Four",
"Five",
"Six",
"Seven",
"Eight",
"Nine"
],
"enumDescriptions": [
"Same editor column as the active editor",
"In a new column beside the active editor"
]
},
"codevoid.inner-loop-buddy.taskMonitoringMode": {
"type": "string",
"scope": "resource",
"default": "matching",
"enum": [
"matching",
"all"
],
"enumDescriptions": [
"Only task that match the configured criteria",
"All tasks that are executed"
]
},
"codevoid.inner-loop-buddy.monitoredTasks": {
"markdownDescription": "The criteria used to determine if a browser tab should be opened. See [documentation](https://github.com/grork/InnerLoopBuddy#extension-settings) for details",
"type": "array",
"scope": "resource",
"items": {
"type": "object"
}
},
"codevoid.inner-loop-buddy.matchedTaskBehavior": {
"markdownDescription": "When a matching task is executed, how should we handle different task executions. See [documentation](https://github.com/grork/InnerLoopBuddy#extension-settings) for details",
"type": "string",
"default": "onetime",
"scope": "resource",
"enum": [
"none",
"onetime",
"everytime"
],
"enumDescriptions": [
"Don't open a browser tab when a matched task is executed",
"Open at most once per session",
"Open every time a matching task is started"
]
},
"codevoid.inner-loop-buddy.focusLockIndicator": {
"type": "boolean",
"default": true,
"scope": "window",
"title": "Focus Lock Indicator Enabled",
"description": "Enable/disable the floating indicator that shows when the page is focused in the browser"
},
"codevoid.inner-loop-buddy.automaticBrowserCacheBypass": {
"type": "boolean",
"scope": "window",
"default": true,
"title": "Automatically append parameters to URLs in the simple browser to bypass the browser cache",
"description": "We are unable to clear VS Code's browser cache, so we automatically append a parameter to the URL to force bypassing of the cache"
}
}
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "npm run compile-extension && npm run compile-browser",
"compile-extension": "tsc -p ./",
"compile-browser": "tsc -p ./browser && node browser/copy-browser-deps.mjs",
"watch-extension": "tsc -watch -p ./",
"watch-browser": "tsc -watch -p ./browser",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/lodash": "^4.14.182",
"@types/mocha": "^9.1.1",
"@types/node": "18.x",
"@types/vscode": "^1.66.0",
"@vscode/test-electron": "^2.1.5",
"glob": "^8.0.3",
"mocha": "^10.0.0",
"npm-check-updates": "^15.3.4",
"typescript": "^4.7.4",
"vsce": "^2.15.0"
},
"dependencies": {
"@types/vscode-webview": "^1.57.0",
"lodash": "^4.17.21"
},
"__metadata": {
"id": "cef35ff5-36de-4735-9d1f-d51f863ce076",
"publisherDisplayName": "Codevoid",
"publisherId": "8069b2fc-2009-4f2f-b611-ac32dd314e5b",
"isPreReleaseVersion": false
}
}