@backstage/plugin-app 0.0.0-nightly-20240918022959 → 0.0.0-nightly-20240919023143
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +2 -2
- package/dist/index.d.ts +89 -0
- package/package.json +28 -28
package/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
# @backstage/plugin-app
|
|
2
2
|
|
|
3
|
-
## 0.0.0-nightly-
|
|
3
|
+
## 0.0.0-nightly-20240919023143
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
7
|
- Updated dependencies
|
|
8
|
-
- @backstage/frontend-plugin-api@0.0.0-nightly-
|
|
8
|
+
- @backstage/frontend-plugin-api@0.0.0-nightly-20240919023143
|
|
9
9
|
- @backstage/core-components@0.15.0
|
|
10
10
|
- @backstage/core-plugin-api@1.9.4
|
|
11
11
|
- @backstage/theme@0.5.7
|
package/dist/index.d.ts
CHANGED
|
@@ -15,6 +15,7 @@ declare const appPlugin: _backstage_frontend_plugin_api.FrontendPlugin<{}, {}, {
|
|
|
15
15
|
optional: false;
|
|
16
16
|
}>;
|
|
17
17
|
};
|
|
18
|
+
params: never;
|
|
18
19
|
kind: undefined;
|
|
19
20
|
namespace: undefined;
|
|
20
21
|
name: undefined;
|
|
@@ -27,6 +28,9 @@ declare const appPlugin: _backstage_frontend_plugin_api.FrontendPlugin<{}, {}, {
|
|
|
27
28
|
configInput: {};
|
|
28
29
|
output: _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<_backstage_frontend_plugin_api.AnyApiFactory, "core.api.factory", {}>;
|
|
29
30
|
inputs: {};
|
|
31
|
+
params: {
|
|
32
|
+
factory: _backstage_frontend_plugin_api.AnyApiFactory;
|
|
33
|
+
};
|
|
30
34
|
}>;
|
|
31
35
|
"app/layout": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
32
36
|
config: {};
|
|
@@ -42,6 +46,7 @@ declare const appPlugin: _backstage_frontend_plugin_api.FrontendPlugin<{}, {}, {
|
|
|
42
46
|
optional: false;
|
|
43
47
|
}>;
|
|
44
48
|
};
|
|
49
|
+
params: never;
|
|
45
50
|
kind: undefined;
|
|
46
51
|
namespace: undefined;
|
|
47
52
|
name: "layout";
|
|
@@ -67,6 +72,7 @@ declare const appPlugin: _backstage_frontend_plugin_api.FrontendPlugin<{}, {}, {
|
|
|
67
72
|
optional: true;
|
|
68
73
|
}>;
|
|
69
74
|
};
|
|
75
|
+
params: never;
|
|
70
76
|
kind: undefined;
|
|
71
77
|
namespace: undefined;
|
|
72
78
|
name: "nav";
|
|
@@ -101,6 +107,7 @@ declare const appPlugin: _backstage_frontend_plugin_api.FrontendPlugin<{}, {}, {
|
|
|
101
107
|
optional: false;
|
|
102
108
|
}>;
|
|
103
109
|
};
|
|
110
|
+
params: never;
|
|
104
111
|
kind: undefined;
|
|
105
112
|
namespace: undefined;
|
|
106
113
|
name: "root";
|
|
@@ -117,6 +124,7 @@ declare const appPlugin: _backstage_frontend_plugin_api.FrontendPlugin<{}, {}, {
|
|
|
117
124
|
optional: false;
|
|
118
125
|
}>;
|
|
119
126
|
};
|
|
127
|
+
params: never;
|
|
120
128
|
kind: undefined;
|
|
121
129
|
namespace: undefined;
|
|
122
130
|
name: "routes";
|
|
@@ -134,6 +142,9 @@ declare const appPlugin: _backstage_frontend_plugin_api.FrontendPlugin<{}, {}, {
|
|
|
134
142
|
kind: "api";
|
|
135
143
|
namespace: undefined;
|
|
136
144
|
name: "app-theme";
|
|
145
|
+
params: {
|
|
146
|
+
factory: _backstage_frontend_plugin_api.AnyApiFactory;
|
|
147
|
+
};
|
|
137
148
|
}>;
|
|
138
149
|
"theme:app/light": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
139
150
|
kind: "theme";
|
|
@@ -143,6 +154,9 @@ declare const appPlugin: _backstage_frontend_plugin_api.FrontendPlugin<{}, {}, {
|
|
|
143
154
|
configInput: {};
|
|
144
155
|
output: _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<_backstage_frontend_plugin_api.AppTheme, "core.theme.theme", {}>;
|
|
145
156
|
inputs: {};
|
|
157
|
+
params: {
|
|
158
|
+
theme: _backstage_frontend_plugin_api.AppTheme;
|
|
159
|
+
};
|
|
146
160
|
}>;
|
|
147
161
|
"theme:app/dark": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
148
162
|
kind: "theme";
|
|
@@ -152,6 +166,9 @@ declare const appPlugin: _backstage_frontend_plugin_api.FrontendPlugin<{}, {}, {
|
|
|
152
166
|
configInput: {};
|
|
153
167
|
output: _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<_backstage_frontend_plugin_api.AppTheme, "core.theme.theme", {}>;
|
|
154
168
|
inputs: {};
|
|
169
|
+
params: {
|
|
170
|
+
theme: _backstage_frontend_plugin_api.AppTheme;
|
|
171
|
+
};
|
|
155
172
|
}>;
|
|
156
173
|
"api:app/components": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
157
174
|
config: {};
|
|
@@ -169,6 +186,9 @@ declare const appPlugin: _backstage_frontend_plugin_api.FrontendPlugin<{}, {}, {
|
|
|
169
186
|
kind: "api";
|
|
170
187
|
namespace: undefined;
|
|
171
188
|
name: "components";
|
|
189
|
+
params: {
|
|
190
|
+
factory: _backstage_frontend_plugin_api.AnyApiFactory;
|
|
191
|
+
};
|
|
172
192
|
}>;
|
|
173
193
|
"api:app/icons": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
174
194
|
config: {};
|
|
@@ -185,6 +205,9 @@ declare const appPlugin: _backstage_frontend_plugin_api.FrontendPlugin<{}, {}, {
|
|
|
185
205
|
kind: "api";
|
|
186
206
|
namespace: undefined;
|
|
187
207
|
name: "icons";
|
|
208
|
+
params: {
|
|
209
|
+
factory: _backstage_frontend_plugin_api.AnyApiFactory;
|
|
210
|
+
};
|
|
188
211
|
}>;
|
|
189
212
|
"api:app/feature-flags": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
190
213
|
kind: "api";
|
|
@@ -194,6 +217,9 @@ declare const appPlugin: _backstage_frontend_plugin_api.FrontendPlugin<{}, {}, {
|
|
|
194
217
|
configInput: {};
|
|
195
218
|
output: _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<_backstage_frontend_plugin_api.AnyApiFactory, "core.api.factory", {}>;
|
|
196
219
|
inputs: {};
|
|
220
|
+
params: {
|
|
221
|
+
factory: _backstage_frontend_plugin_api.AnyApiFactory;
|
|
222
|
+
};
|
|
197
223
|
}>;
|
|
198
224
|
"api:app/translations": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
199
225
|
config: {};
|
|
@@ -210,6 +236,9 @@ declare const appPlugin: _backstage_frontend_plugin_api.FrontendPlugin<{}, {}, {
|
|
|
210
236
|
kind: "api";
|
|
211
237
|
namespace: undefined;
|
|
212
238
|
name: "translations";
|
|
239
|
+
params: {
|
|
240
|
+
factory: _backstage_frontend_plugin_api.AnyApiFactory;
|
|
241
|
+
};
|
|
213
242
|
}>;
|
|
214
243
|
"app-root-element:app/oauth-request-dialog": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
215
244
|
kind: "app-root-element";
|
|
@@ -219,6 +248,9 @@ declare const appPlugin: _backstage_frontend_plugin_api.FrontendPlugin<{}, {}, {
|
|
|
219
248
|
configInput: {};
|
|
220
249
|
output: _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<react.JSX.Element, "core.reactElement", {}>;
|
|
221
250
|
inputs: {};
|
|
251
|
+
params: {
|
|
252
|
+
element: JSX.Element | (() => JSX.Element);
|
|
253
|
+
};
|
|
222
254
|
}>;
|
|
223
255
|
"app-root-element:app/alert-display": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
224
256
|
config: {
|
|
@@ -245,6 +277,9 @@ declare const appPlugin: _backstage_frontend_plugin_api.FrontendPlugin<{}, {}, {
|
|
|
245
277
|
kind: "app-root-element";
|
|
246
278
|
namespace: undefined;
|
|
247
279
|
name: "alert-display";
|
|
280
|
+
params: {
|
|
281
|
+
element: JSX.Element | (() => JSX.Element);
|
|
282
|
+
};
|
|
248
283
|
}>;
|
|
249
284
|
"api:app/discovery": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
250
285
|
kind: "api";
|
|
@@ -254,6 +289,9 @@ declare const appPlugin: _backstage_frontend_plugin_api.FrontendPlugin<{}, {}, {
|
|
|
254
289
|
configInput: {};
|
|
255
290
|
output: _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<_backstage_frontend_plugin_api.AnyApiFactory, "core.api.factory", {}>;
|
|
256
291
|
inputs: {};
|
|
292
|
+
params: {
|
|
293
|
+
factory: _backstage_frontend_plugin_api.AnyApiFactory;
|
|
294
|
+
};
|
|
257
295
|
}>;
|
|
258
296
|
"api:app/alert": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
259
297
|
kind: "api";
|
|
@@ -263,6 +301,9 @@ declare const appPlugin: _backstage_frontend_plugin_api.FrontendPlugin<{}, {}, {
|
|
|
263
301
|
configInput: {};
|
|
264
302
|
output: _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<_backstage_frontend_plugin_api.AnyApiFactory, "core.api.factory", {}>;
|
|
265
303
|
inputs: {};
|
|
304
|
+
params: {
|
|
305
|
+
factory: _backstage_frontend_plugin_api.AnyApiFactory;
|
|
306
|
+
};
|
|
266
307
|
}>;
|
|
267
308
|
"api:app/analytics": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
268
309
|
kind: "api";
|
|
@@ -272,6 +313,9 @@ declare const appPlugin: _backstage_frontend_plugin_api.FrontendPlugin<{}, {}, {
|
|
|
272
313
|
configInput: {};
|
|
273
314
|
output: _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<_backstage_frontend_plugin_api.AnyApiFactory, "core.api.factory", {}>;
|
|
274
315
|
inputs: {};
|
|
316
|
+
params: {
|
|
317
|
+
factory: _backstage_frontend_plugin_api.AnyApiFactory;
|
|
318
|
+
};
|
|
275
319
|
}>;
|
|
276
320
|
"api:app/error": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
277
321
|
kind: "api";
|
|
@@ -281,6 +325,9 @@ declare const appPlugin: _backstage_frontend_plugin_api.FrontendPlugin<{}, {}, {
|
|
|
281
325
|
configInput: {};
|
|
282
326
|
output: _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<_backstage_frontend_plugin_api.AnyApiFactory, "core.api.factory", {}>;
|
|
283
327
|
inputs: {};
|
|
328
|
+
params: {
|
|
329
|
+
factory: _backstage_frontend_plugin_api.AnyApiFactory;
|
|
330
|
+
};
|
|
284
331
|
}>;
|
|
285
332
|
"api:app/storage": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
286
333
|
kind: "api";
|
|
@@ -290,6 +337,9 @@ declare const appPlugin: _backstage_frontend_plugin_api.FrontendPlugin<{}, {}, {
|
|
|
290
337
|
configInput: {};
|
|
291
338
|
output: _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<_backstage_frontend_plugin_api.AnyApiFactory, "core.api.factory", {}>;
|
|
292
339
|
inputs: {};
|
|
340
|
+
params: {
|
|
341
|
+
factory: _backstage_frontend_plugin_api.AnyApiFactory;
|
|
342
|
+
};
|
|
293
343
|
}>;
|
|
294
344
|
"api:app/fetch": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
295
345
|
kind: "api";
|
|
@@ -299,6 +349,9 @@ declare const appPlugin: _backstage_frontend_plugin_api.FrontendPlugin<{}, {}, {
|
|
|
299
349
|
configInput: {};
|
|
300
350
|
output: _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<_backstage_frontend_plugin_api.AnyApiFactory, "core.api.factory", {}>;
|
|
301
351
|
inputs: {};
|
|
352
|
+
params: {
|
|
353
|
+
factory: _backstage_frontend_plugin_api.AnyApiFactory;
|
|
354
|
+
};
|
|
302
355
|
}>;
|
|
303
356
|
"api:app/oauth-request": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
304
357
|
kind: "api";
|
|
@@ -308,6 +361,9 @@ declare const appPlugin: _backstage_frontend_plugin_api.FrontendPlugin<{}, {}, {
|
|
|
308
361
|
configInput: {};
|
|
309
362
|
output: _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<_backstage_frontend_plugin_api.AnyApiFactory, "core.api.factory", {}>;
|
|
310
363
|
inputs: {};
|
|
364
|
+
params: {
|
|
365
|
+
factory: _backstage_frontend_plugin_api.AnyApiFactory;
|
|
366
|
+
};
|
|
311
367
|
}>;
|
|
312
368
|
"api:app/google-auth": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
313
369
|
kind: "api";
|
|
@@ -317,6 +373,9 @@ declare const appPlugin: _backstage_frontend_plugin_api.FrontendPlugin<{}, {}, {
|
|
|
317
373
|
configInput: {};
|
|
318
374
|
output: _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<_backstage_frontend_plugin_api.AnyApiFactory, "core.api.factory", {}>;
|
|
319
375
|
inputs: {};
|
|
376
|
+
params: {
|
|
377
|
+
factory: _backstage_frontend_plugin_api.AnyApiFactory;
|
|
378
|
+
};
|
|
320
379
|
}>;
|
|
321
380
|
"api:app/microsoft-auth": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
322
381
|
kind: "api";
|
|
@@ -326,6 +385,9 @@ declare const appPlugin: _backstage_frontend_plugin_api.FrontendPlugin<{}, {}, {
|
|
|
326
385
|
configInput: {};
|
|
327
386
|
output: _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<_backstage_frontend_plugin_api.AnyApiFactory, "core.api.factory", {}>;
|
|
328
387
|
inputs: {};
|
|
388
|
+
params: {
|
|
389
|
+
factory: _backstage_frontend_plugin_api.AnyApiFactory;
|
|
390
|
+
};
|
|
329
391
|
}>;
|
|
330
392
|
"api:app/github-auth": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
331
393
|
kind: "api";
|
|
@@ -335,6 +397,9 @@ declare const appPlugin: _backstage_frontend_plugin_api.FrontendPlugin<{}, {}, {
|
|
|
335
397
|
configInput: {};
|
|
336
398
|
output: _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<_backstage_frontend_plugin_api.AnyApiFactory, "core.api.factory", {}>;
|
|
337
399
|
inputs: {};
|
|
400
|
+
params: {
|
|
401
|
+
factory: _backstage_frontend_plugin_api.AnyApiFactory;
|
|
402
|
+
};
|
|
338
403
|
}>;
|
|
339
404
|
"api:app/okta-auth": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
340
405
|
kind: "api";
|
|
@@ -344,6 +409,9 @@ declare const appPlugin: _backstage_frontend_plugin_api.FrontendPlugin<{}, {}, {
|
|
|
344
409
|
configInput: {};
|
|
345
410
|
output: _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<_backstage_frontend_plugin_api.AnyApiFactory, "core.api.factory", {}>;
|
|
346
411
|
inputs: {};
|
|
412
|
+
params: {
|
|
413
|
+
factory: _backstage_frontend_plugin_api.AnyApiFactory;
|
|
414
|
+
};
|
|
347
415
|
}>;
|
|
348
416
|
"api:app/gitlab-auth": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
349
417
|
kind: "api";
|
|
@@ -353,6 +421,9 @@ declare const appPlugin: _backstage_frontend_plugin_api.FrontendPlugin<{}, {}, {
|
|
|
353
421
|
configInput: {};
|
|
354
422
|
output: _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<_backstage_frontend_plugin_api.AnyApiFactory, "core.api.factory", {}>;
|
|
355
423
|
inputs: {};
|
|
424
|
+
params: {
|
|
425
|
+
factory: _backstage_frontend_plugin_api.AnyApiFactory;
|
|
426
|
+
};
|
|
356
427
|
}>;
|
|
357
428
|
"api:app/onelogin-auth": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
358
429
|
kind: "api";
|
|
@@ -362,6 +433,9 @@ declare const appPlugin: _backstage_frontend_plugin_api.FrontendPlugin<{}, {}, {
|
|
|
362
433
|
configInput: {};
|
|
363
434
|
output: _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<_backstage_frontend_plugin_api.AnyApiFactory, "core.api.factory", {}>;
|
|
364
435
|
inputs: {};
|
|
436
|
+
params: {
|
|
437
|
+
factory: _backstage_frontend_plugin_api.AnyApiFactory;
|
|
438
|
+
};
|
|
365
439
|
}>;
|
|
366
440
|
"api:app/bitbucket-auth": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
367
441
|
kind: "api";
|
|
@@ -371,6 +445,9 @@ declare const appPlugin: _backstage_frontend_plugin_api.FrontendPlugin<{}, {}, {
|
|
|
371
445
|
configInput: {};
|
|
372
446
|
output: _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<_backstage_frontend_plugin_api.AnyApiFactory, "core.api.factory", {}>;
|
|
373
447
|
inputs: {};
|
|
448
|
+
params: {
|
|
449
|
+
factory: _backstage_frontend_plugin_api.AnyApiFactory;
|
|
450
|
+
};
|
|
374
451
|
}>;
|
|
375
452
|
"api:app/bitbucket-server-auth": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
376
453
|
kind: "api";
|
|
@@ -380,6 +457,9 @@ declare const appPlugin: _backstage_frontend_plugin_api.FrontendPlugin<{}, {}, {
|
|
|
380
457
|
configInput: {};
|
|
381
458
|
output: _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<_backstage_frontend_plugin_api.AnyApiFactory, "core.api.factory", {}>;
|
|
382
459
|
inputs: {};
|
|
460
|
+
params: {
|
|
461
|
+
factory: _backstage_frontend_plugin_api.AnyApiFactory;
|
|
462
|
+
};
|
|
383
463
|
}>;
|
|
384
464
|
"api:app/atlassian-auth": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
385
465
|
kind: "api";
|
|
@@ -389,6 +469,9 @@ declare const appPlugin: _backstage_frontend_plugin_api.FrontendPlugin<{}, {}, {
|
|
|
389
469
|
configInput: {};
|
|
390
470
|
output: _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<_backstage_frontend_plugin_api.AnyApiFactory, "core.api.factory", {}>;
|
|
391
471
|
inputs: {};
|
|
472
|
+
params: {
|
|
473
|
+
factory: _backstage_frontend_plugin_api.AnyApiFactory;
|
|
474
|
+
};
|
|
392
475
|
}>;
|
|
393
476
|
"api:app/vmware-cloud-auth": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
394
477
|
kind: "api";
|
|
@@ -398,6 +481,9 @@ declare const appPlugin: _backstage_frontend_plugin_api.FrontendPlugin<{}, {}, {
|
|
|
398
481
|
configInput: {};
|
|
399
482
|
output: _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<_backstage_frontend_plugin_api.AnyApiFactory, "core.api.factory", {}>;
|
|
400
483
|
inputs: {};
|
|
484
|
+
params: {
|
|
485
|
+
factory: _backstage_frontend_plugin_api.AnyApiFactory;
|
|
486
|
+
};
|
|
401
487
|
}>;
|
|
402
488
|
"api:app/permission": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
403
489
|
kind: "api";
|
|
@@ -407,6 +493,9 @@ declare const appPlugin: _backstage_frontend_plugin_api.FrontendPlugin<{}, {}, {
|
|
|
407
493
|
configInput: {};
|
|
408
494
|
output: _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<_backstage_frontend_plugin_api.AnyApiFactory, "core.api.factory", {}>;
|
|
409
495
|
inputs: {};
|
|
496
|
+
params: {
|
|
497
|
+
factory: _backstage_frontend_plugin_api.AnyApiFactory;
|
|
498
|
+
};
|
|
410
499
|
}>;
|
|
411
500
|
}>;
|
|
412
501
|
|
package/package.json
CHANGED
|
@@ -1,9 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-app",
|
|
3
|
-
"version": "0.0.0-nightly-
|
|
4
|
-
"
|
|
5
|
-
|
|
6
|
-
|
|
3
|
+
"version": "0.0.0-nightly-20240919023143",
|
|
4
|
+
"backstage": {
|
|
5
|
+
"role": "frontend-plugin",
|
|
6
|
+
"pluginId": "app",
|
|
7
|
+
"pluginPackages": [
|
|
8
|
+
"@backstage/plugin-app",
|
|
9
|
+
"@backstage/plugin-app-backend",
|
|
10
|
+
"@backstage/plugin-app-node"
|
|
11
|
+
]
|
|
12
|
+
},
|
|
7
13
|
"publishConfig": {
|
|
8
14
|
"access": "public",
|
|
9
15
|
"main": "dist/index.esm.js",
|
|
@@ -14,29 +20,26 @@
|
|
|
14
20
|
"url": "https://github.com/backstage/backstage",
|
|
15
21
|
"directory": "plugins/app"
|
|
16
22
|
},
|
|
17
|
-
"
|
|
18
|
-
"role": "frontend-plugin",
|
|
19
|
-
"pluginId": "app",
|
|
20
|
-
"pluginPackages": [
|
|
21
|
-
"@backstage/plugin-app",
|
|
22
|
-
"@backstage/plugin-app-backend",
|
|
23
|
-
"@backstage/plugin-app-node"
|
|
24
|
-
]
|
|
25
|
-
},
|
|
23
|
+
"license": "Apache-2.0",
|
|
26
24
|
"sideEffects": false,
|
|
25
|
+
"main": "dist/index.esm.js",
|
|
26
|
+
"types": "dist/index.d.ts",
|
|
27
|
+
"files": [
|
|
28
|
+
"dist"
|
|
29
|
+
],
|
|
27
30
|
"scripts": {
|
|
28
|
-
"start": "backstage-cli package start",
|
|
29
31
|
"build": "backstage-cli package build",
|
|
30
|
-
"lint": "backstage-cli package lint",
|
|
31
|
-
"test": "backstage-cli package test",
|
|
32
32
|
"clean": "backstage-cli package clean",
|
|
33
|
+
"lint": "backstage-cli package lint",
|
|
33
34
|
"prepack": "backstage-cli package prepack",
|
|
34
|
-
"postpack": "backstage-cli package postpack"
|
|
35
|
+
"postpack": "backstage-cli package postpack",
|
|
36
|
+
"start": "backstage-cli package start",
|
|
37
|
+
"test": "backstage-cli package test"
|
|
35
38
|
},
|
|
36
39
|
"dependencies": {
|
|
37
40
|
"@backstage/core-components": "^0.15.0",
|
|
38
41
|
"@backstage/core-plugin-api": "^1.9.4",
|
|
39
|
-
"@backstage/frontend-plugin-api": "^0.0.0-nightly-
|
|
42
|
+
"@backstage/frontend-plugin-api": "^0.0.0-nightly-20240919023143",
|
|
40
43
|
"@backstage/plugin-permission-react": "^0.4.26",
|
|
41
44
|
"@backstage/theme": "^0.5.7",
|
|
42
45
|
"@material-ui/core": "^4.9.13",
|
|
@@ -45,22 +48,19 @@
|
|
|
45
48
|
"@types/react": "^16.13.1 || ^17.0.0 || ^18.0.0",
|
|
46
49
|
"react-use": "^17.2.4"
|
|
47
50
|
},
|
|
48
|
-
"peerDependencies": {
|
|
49
|
-
"react": "^16.13.1 || ^17.0.0 || ^18.0.0",
|
|
50
|
-
"react-router-dom": "6.0.0-beta.0 || ^6.3.0"
|
|
51
|
-
},
|
|
52
51
|
"devDependencies": {
|
|
53
|
-
"@backstage/cli": "^0.0.0-nightly-
|
|
54
|
-
"@backstage/dev-utils": "^0.0.0-nightly-
|
|
55
|
-
"@backstage/frontend-test-utils": "^0.0.0-nightly-
|
|
52
|
+
"@backstage/cli": "^0.0.0-nightly-20240919023143",
|
|
53
|
+
"@backstage/dev-utils": "^0.0.0-nightly-20240919023143",
|
|
54
|
+
"@backstage/frontend-test-utils": "^0.0.0-nightly-20240919023143",
|
|
56
55
|
"@testing-library/jest-dom": "^6.0.0",
|
|
57
56
|
"@testing-library/react": "^16.0.0",
|
|
58
57
|
"@testing-library/user-event": "^14.0.0",
|
|
59
58
|
"msw": "^1.0.0",
|
|
60
59
|
"react": "^16.13.1 || ^17.0.0 || ^18.0.0"
|
|
61
60
|
},
|
|
62
|
-
"
|
|
63
|
-
"
|
|
64
|
-
|
|
61
|
+
"peerDependencies": {
|
|
62
|
+
"react": "^16.13.1 || ^17.0.0 || ^18.0.0",
|
|
63
|
+
"react-router-dom": "6.0.0-beta.0 || ^6.3.0"
|
|
64
|
+
},
|
|
65
65
|
"module": "./dist/index.esm.js"
|
|
66
66
|
}
|