-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
267 lines (267 loc) · 6.93 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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
{
"name": "mirrord",
"displayName": "mirrord",
"description": "Run your local process in the context of your cloud cluster",
"publisher": "MetalBear",
"version": "3.62.1",
"engines": {
"vscode": "^1.63.0"
},
"repository": {
"type": "git",
"url": "https://github.com/metalbear-co/mirrord"
},
"categories": [
"Testing",
"Debuggers",
"Other",
"Azure"
],
"keywords": [
"container",
"k8s",
"kubernetes",
"docker",
"connect",
"cluster",
"debug",
"microservice",
"cloud native",
"mirrord"
],
"icon": "images/icon.png",
"activationEvents": [
"onStartupFinished"
],
"extensionKind": [
"workspace"
],
"contributes": {
"commands": [
{
"command": "mirrord.changeSettings",
"category": "mirrord",
"title": "Change settings"
},
{
"command": "mirrord.mirrordForTeams",
"category": "mirrord",
"title": "Navigate to mirrord for Teams introduction"
},
{
"command": "mirrord.selectActiveConfig",
"category": "mirrord",
"title": "Select active configuration"
},
{
"command": "mirrord.joinDiscord",
"category": "mirrord",
"title": "Join our Discord"
},
{
"command": "mirrord.help",
"category": "mirrord",
"title": "Show mirrord walkthrough"
}
],
"configuration": {
"title": "mirrord",
"properties": {
"mirrord.promptMirrordForTeams": {
"type": "boolean",
"default": true,
"description": "Show notifications about mirrord for Teams."
},
"mirrord.promptActiveConfigRemoved": {
"type": "boolean",
"default": true,
"description": "Show a notification when active configuration file is removed."
},
"mirrord.promptActiveConfigMoved": {
"type": "boolean",
"default": true,
"description": "Show a notification when active configuration file is moved."
},
"mirrord.promptUsingActiveConfig": {
"type": "boolean",
"default": true,
"description": "Show a notification when mirrord uses active configuration."
},
"mirrord.promptUsingEnvVarConfig": {
"type": "boolean",
"default": true,
"description": "Show a notification when mirrord uses env var configuration."
},
"mirrord.promptUsingDefaultConfig": {
"type": "boolean",
"default": true,
"description": "Show a notification when mirrord uses default configuration."
},
"mirrord.promptUsingDefaultConfigSingleFileNoFolder": {
"type": "boolean",
"default": true,
"description": "Show a notification when mirrord uses default configuration when running vscode with a single file (no folder)."
},
"mirrord.promptTargetless": {
"type": "boolean",
"default": true,
"description": "Show a notification when mirrord runs in targetless mode."
},
"mirrord.promptOutdated": {
"type": "boolean",
"default": true,
"description": "Show a notification when a new version of mirrord is available."
},
"mirrord.promptReview": {
"type": "boolean",
"default": true,
"description": "Occasionally show a notification asking for plugin review."
},
"mirrord.promptDiscord": {
"type": "boolean",
"default": true,
"description": "Show a notification inviting the user to the Discord server."
},
"mirrord.promptAgentVersionMismatch": {
"type": "boolean",
"default": true,
"description": "Show a notification when agent version does not match version of the local mirrord installation."
},
"mirrord.binaryPath": {
"type": [
"string",
"null"
],
"default": null,
"description": "Path to local mirrord installation."
},
"mirrord.autoUpdate": {
"type": [
"string",
"boolean"
],
"default": true,
"description": "Automatically update mirrord binary."
},
"mirrord.enabledByDefault": {
"type": [
"boolean"
],
"default": false,
"description": "Enable mirrord by default on startup."
}
}
},
"menus": {
"commandPalette": [
{
"command": "mirrord.changeSettings",
"when": "true"
},
{
"command": "mirrord.mirrordForTeams",
"when": "true"
},
{
"command": "mirrord.selectActiveConfig",
"when": "true"
},
{
"command": "mirrord.joinDiscord",
"when": "true"
},
{
"command": "mirrord.help",
"when": "true"
}
]
},
"jsonValidation": [
{
"fileMatch": [
"*mirrord.json",
"*.mirrord/*.json"
],
"url": "https://raw.githubusercontent.com/metalbear-co/mirrord/latest/mirrord-schema.json"
}
],
"walkthroughs": [
{
"id": "mirrord.welcome",
"title": "Get Started with Development using mirrord",
"description": "Run your application in the context of a remote Kubernetes cluster with just one click.",
"steps": [
{
"id": "enablemirroring",
"title": "Enable mirroring",
"description": "Click on the status bar button to enable mirroring.",
"media": {
"markdown": "media/walkthrough/enablemirroring.md"
},
"completionEvents": [
"onCommand:mirrord.toggleMirroring"
]
},
{
"id": "debugapplication",
"title": "Debug your application",
"description": "Start debugging your application and pick a target to impersonate.",
"media": {
"markdown": "media/walkthrough/debugapplication.md"
}
},
{
"id": "defaultconfiguration",
"title": "mirrord configuration",
"description": "Learn about managing mirrord configuration.",
"media": {
"markdown": "media/walkthrough/configuration.md"
}
}
]
}
]
},
"main": "./dist/extension.js",
"scripts": {
"pretest": "npm run test-compile && npm run lint",
"test": "npm run pretest && node out/tests/runTests.js",
"lint": "eslint src -c .eslintrc.json --ext ts",
"format": "eslint src -c .eslintrc.json --ext ts --fix",
"vscode:prepublish": "webpack --mode production",
"compile": "webpack --mode none",
"watch": "webpack --mode none --watch",
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=out/main.js --external:vscode --format=cjs --platform=node",
"esbuild": "npm run esbuild-base -- --sourcemap",
"esbuild-watch": "npm run esbuild-base -- --sourcemap --watch",
"test-compile": "tsc -p ./",
"package": "vsce package"
},
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/node": "14.x",
"@types/vscode": "^1.63.0",
"@types/which": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"@vscode/vsce": "^2.9.2",
"chai": "^4.3.7",
"esbuild": "^0.14.23",
"eslint": "^8.46.0",
"mocha": "^9.1.3",
"ts-loader": "^9.4.2",
"typescript": "^4.5.4",
"vscode-extension-tester": "^7.0.0",
"webpack": "^5.76.0",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"axios": "^1.4.0",
"semver": "^7.5.4",
"toml": "^3.0.0",
"vscode-uri": "^3.0.7",
"which": "^3.0.1",
"yaml": "^2.1.3"
}
}