@backstage-community/plugin-newrelic 0.10.0 → 0.11.0
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 +6 -0
- package/dist/alpha/plugin.esm.js +42 -0
- package/dist/alpha/plugin.esm.js.map +1 -0
- package/dist/alpha.d.ts +57 -0
- package/dist/alpha.esm.js +2 -0
- package/dist/alpha.esm.js.map +1 -0
- package/dist/components/NewRelicComponent/NewRelicComponent.esm.js +1 -1
- package/dist/components/NewRelicComponent/NewRelicComponent.esm.js.map +1 -1
- package/dist/components/NewRelicComponent/index.esm.js +1 -1
- package/dist/plugin.esm.js +1 -1
- package/dist/plugin.esm.js.map +1 -1
- package/package.json +37 -16
package/CHANGELOG.md
CHANGED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { jsx } from 'react/jsx-runtime';
|
|
2
|
+
import { ApiBlueprint, createApiFactory, discoveryApiRef, fetchApiRef, PageBlueprint, NavItemBlueprint, createFrontendPlugin } from '@backstage/frontend-plugin-api';
|
|
3
|
+
import { convertLegacyRouteRef, compatWrapper } from '@backstage/core-compat-api';
|
|
4
|
+
import ExtensionIcon from '@material-ui/icons/ExtensionOutlined';
|
|
5
|
+
import { newRelicApiRef, NewRelicClient } from '../api/index.esm.js';
|
|
6
|
+
import { rootRouteRef } from '../plugin.esm.js';
|
|
7
|
+
|
|
8
|
+
const newRelicApi = ApiBlueprint.make({
|
|
9
|
+
params: {
|
|
10
|
+
factory: createApiFactory({
|
|
11
|
+
api: newRelicApiRef,
|
|
12
|
+
deps: {
|
|
13
|
+
discoveryApi: discoveryApiRef,
|
|
14
|
+
fetchApi: fetchApiRef
|
|
15
|
+
},
|
|
16
|
+
factory: ({ discoveryApi, fetchApi }) => new NewRelicClient({ discoveryApi, fetchApi })
|
|
17
|
+
})
|
|
18
|
+
}
|
|
19
|
+
});
|
|
20
|
+
const newRelicPage = PageBlueprint.make({
|
|
21
|
+
params: {
|
|
22
|
+
defaultPath: "/new-relic",
|
|
23
|
+
routeRef: convertLegacyRouteRef(rootRouteRef),
|
|
24
|
+
loader: () => import('../components/NewRelicComponent/index.esm.js').then(
|
|
25
|
+
(m) => compatWrapper(/* @__PURE__ */ jsx(m.NewRelicComponent, {}))
|
|
26
|
+
)
|
|
27
|
+
}
|
|
28
|
+
});
|
|
29
|
+
const newRelicNavItem = NavItemBlueprint.make({
|
|
30
|
+
params: {
|
|
31
|
+
routeRef: convertLegacyRouteRef(rootRouteRef),
|
|
32
|
+
title: "New Relic",
|
|
33
|
+
icon: ExtensionIcon
|
|
34
|
+
}
|
|
35
|
+
});
|
|
36
|
+
var plugin = createFrontendPlugin({
|
|
37
|
+
pluginId: "newrelic",
|
|
38
|
+
extensions: [newRelicApi, newRelicPage, newRelicNavItem]
|
|
39
|
+
});
|
|
40
|
+
|
|
41
|
+
export { plugin as default, newRelicApi, newRelicNavItem, newRelicPage };
|
|
42
|
+
//# sourceMappingURL=plugin.esm.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"plugin.esm.js","sources":["../../src/alpha/plugin.tsx"],"sourcesContent":["/*\n * Copyright 2025 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport {\n ApiBlueprint,\n createApiFactory,\n PageBlueprint,\n createFrontendPlugin,\n discoveryApiRef,\n fetchApiRef,\n NavItemBlueprint,\n} from '@backstage/frontend-plugin-api';\nimport {\n compatWrapper,\n convertLegacyRouteRef,\n} from '@backstage/core-compat-api';\nimport ExtensionIcon from '@material-ui/icons/ExtensionOutlined';\n\nimport { newRelicApiRef, NewRelicClient } from '../api';\nimport { rootRouteRef } from '../plugin';\n\n/** @alpha */\nexport const newRelicApi = ApiBlueprint.make({\n params: {\n factory: createApiFactory({\n api: newRelicApiRef,\n deps: {\n discoveryApi: discoveryApiRef,\n fetchApi: fetchApiRef,\n },\n factory: ({ discoveryApi, fetchApi }) =>\n new NewRelicClient({ discoveryApi, fetchApi }),\n }),\n },\n});\n\n/** @alpha */\nexport const newRelicPage = PageBlueprint.make({\n params: {\n defaultPath: '/new-relic',\n routeRef: convertLegacyRouteRef(rootRouteRef),\n loader: () =>\n import('../components/NewRelicComponent').then(m =>\n compatWrapper(<m.NewRelicComponent />),\n ),\n },\n});\n\n/** @alpha */\nexport const newRelicNavItem = NavItemBlueprint.make({\n params: {\n routeRef: convertLegacyRouteRef(rootRouteRef),\n title: 'New Relic',\n icon: ExtensionIcon,\n },\n});\n\n/** @alpha */\nexport default createFrontendPlugin({\n pluginId: 'newrelic',\n extensions: [newRelicApi, newRelicPage, newRelicNavItem],\n});\n"],"names":[],"mappings":";;;;;;;AAmCa,MAAA,WAAA,GAAc,aAAa,IAAK,CAAA;AAAA,EAC3C,MAAQ,EAAA;AAAA,IACN,SAAS,gBAAiB,CAAA;AAAA,MACxB,GAAK,EAAA,cAAA;AAAA,MACL,IAAM,EAAA;AAAA,QACJ,YAAc,EAAA,eAAA;AAAA,QACd,QAAU,EAAA;AAAA,OACZ;AAAA,MACA,OAAA,EAAS,CAAC,EAAE,YAAc,EAAA,QAAA,EACxB,KAAA,IAAI,cAAe,CAAA,EAAE,YAAc,EAAA,QAAA,EAAU;AAAA,KAChD;AAAA;AAEL,CAAC;AAGY,MAAA,YAAA,GAAe,cAAc,IAAK,CAAA;AAAA,EAC7C,MAAQ,EAAA;AAAA,IACN,WAAa,EAAA,YAAA;AAAA,IACb,QAAA,EAAU,sBAAsB,YAAY,CAAA;AAAA,IAC5C,MAAQ,EAAA,MACN,OAAO,8CAAiC,CAAE,CAAA,IAAA;AAAA,MAAK,OAC7C,aAAc,iBAAA,GAAA,CAAC,CAAE,CAAA,iBAAA,EAAF,EAAoB,CAAE;AAAA;AACvC;AAEN,CAAC;AAGY,MAAA,eAAA,GAAkB,iBAAiB,IAAK,CAAA;AAAA,EACnD,MAAQ,EAAA;AAAA,IACN,QAAA,EAAU,sBAAsB,YAAY,CAAA;AAAA,IAC5C,KAAO,EAAA,WAAA;AAAA,IACP,IAAM,EAAA;AAAA;AAEV,CAAC;AAGD,aAAe,oBAAqB,CAAA;AAAA,EAClC,QAAU,EAAA,UAAA;AAAA,EACV,UAAY,EAAA,CAAC,WAAa,EAAA,YAAA,EAAc,eAAe;AACzD,CAAC,CAAA;;;;"}
|
package/dist/alpha.d.ts
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import * as react from 'react';
|
|
3
|
+
import * as _backstage_frontend_plugin_api from '@backstage/frontend-plugin-api';
|
|
4
|
+
import * as _backstage_core_plugin_api from '@backstage/core-plugin-api';
|
|
5
|
+
|
|
6
|
+
/** @alpha */
|
|
7
|
+
declare const _default: _backstage_frontend_plugin_api.FrontendPlugin<{}, {}, {
|
|
8
|
+
"api:newrelic": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
9
|
+
kind: "api";
|
|
10
|
+
name: undefined;
|
|
11
|
+
config: {};
|
|
12
|
+
configInput: {};
|
|
13
|
+
output: _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<_backstage_core_plugin_api.AnyApiFactory, "core.api.factory", {}>;
|
|
14
|
+
inputs: {};
|
|
15
|
+
params: {
|
|
16
|
+
factory: _backstage_core_plugin_api.AnyApiFactory;
|
|
17
|
+
};
|
|
18
|
+
}>;
|
|
19
|
+
"nav-item:newrelic": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
20
|
+
kind: "nav-item";
|
|
21
|
+
name: undefined;
|
|
22
|
+
config: {};
|
|
23
|
+
configInput: {};
|
|
24
|
+
output: _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<{
|
|
25
|
+
title: string;
|
|
26
|
+
icon: _backstage_core_plugin_api.IconComponent;
|
|
27
|
+
routeRef: _backstage_frontend_plugin_api.RouteRef<undefined>;
|
|
28
|
+
}, "core.nav-item.target", {}>;
|
|
29
|
+
inputs: {};
|
|
30
|
+
params: {
|
|
31
|
+
title: string;
|
|
32
|
+
icon: _backstage_core_plugin_api.IconComponent;
|
|
33
|
+
routeRef: _backstage_frontend_plugin_api.RouteRef<undefined>;
|
|
34
|
+
};
|
|
35
|
+
}>;
|
|
36
|
+
"page:newrelic": _backstage_frontend_plugin_api.ExtensionDefinition<{
|
|
37
|
+
kind: "page";
|
|
38
|
+
name: undefined;
|
|
39
|
+
config: {
|
|
40
|
+
path: string | undefined;
|
|
41
|
+
};
|
|
42
|
+
configInput: {
|
|
43
|
+
path?: string | undefined;
|
|
44
|
+
};
|
|
45
|
+
output: _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<react.JSX.Element, "core.reactElement", {}> | _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<string, "core.routing.path", {}> | _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<_backstage_frontend_plugin_api.RouteRef<_backstage_frontend_plugin_api.AnyRouteRefParams>, "core.routing.ref", {
|
|
46
|
+
optional: true;
|
|
47
|
+
}>;
|
|
48
|
+
inputs: {};
|
|
49
|
+
params: {
|
|
50
|
+
defaultPath: string;
|
|
51
|
+
loader: () => Promise<JSX.Element>;
|
|
52
|
+
routeRef?: _backstage_frontend_plugin_api.RouteRef<_backstage_frontend_plugin_api.AnyRouteRefParams> | undefined;
|
|
53
|
+
};
|
|
54
|
+
}>;
|
|
55
|
+
}>;
|
|
56
|
+
|
|
57
|
+
export { _default as default };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"alpha.esm.js","sources":[],"sourcesContent":[],"names":[],"mappings":""}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NewRelicComponent.esm.js","sources":["../../../src/components/NewRelicComponent/NewRelicComponent.tsx"],"sourcesContent":["/*\n * Copyright 2020 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport Grid from '@material-ui/core/Grid';\nimport NewRelicFetchComponent from '../NewRelicFetchComponent';\nimport {\n Header,\n Page,\n Content,\n ContentHeader,\n HeaderLabel,\n SupportButton,\n} from '@backstage/core-components';\n\
|
|
1
|
+
{"version":3,"file":"NewRelicComponent.esm.js","sources":["../../../src/components/NewRelicComponent/NewRelicComponent.tsx"],"sourcesContent":["/*\n * Copyright 2020 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport Grid from '@material-ui/core/Grid';\nimport NewRelicFetchComponent from '../NewRelicFetchComponent';\nimport {\n Header,\n Page,\n Content,\n ContentHeader,\n HeaderLabel,\n SupportButton,\n} from '@backstage/core-components';\n\nexport const NewRelicComponent = () => (\n <Page themeId=\"tool\">\n <Header title=\"New Relic\">\n <HeaderLabel label=\"Owner\" value=\"Engineering\" />\n </Header>\n <Content>\n <ContentHeader title=\"New Relic\">\n <SupportButton>\n New Relic Application Performance Monitoring\n </SupportButton>\n </ContentHeader>\n <Grid container spacing={3} direction=\"column\">\n <Grid item>\n <NewRelicFetchComponent />\n </Grid>\n </Grid>\n </Content>\n </Page>\n);\n"],"names":[],"mappings":";;;;;AA2BO,MAAM,iBAAoB,GAAA,sBAC9B,IAAA,CAAA,IAAA,EAAA,EAAK,SAAQ,MACZ,EAAA,QAAA,EAAA;AAAA,kBAAC,GAAA,CAAA,MAAA,EAAA,EAAO,OAAM,WACZ,EAAA,QAAA,kBAAA,GAAA,CAAC,eAAY,KAAM,EAAA,OAAA,EAAQ,KAAM,EAAA,aAAA,EAAc,CACjD,EAAA,CAAA;AAAA,uBACC,OACC,EAAA,EAAA,QAAA,EAAA;AAAA,oBAAA,GAAA,CAAC,iBAAc,KAAM,EAAA,WAAA,EACnB,QAAC,kBAAA,GAAA,CAAA,aAAA,EAAA,EAAc,0DAEf,CACF,EAAA,CAAA;AAAA,oBACC,GAAA,CAAA,IAAA,EAAA,EAAK,SAAS,EAAA,IAAA,EAAC,SAAS,CAAG,EAAA,SAAA,EAAU,QACpC,EAAA,QAAA,kBAAA,GAAA,CAAC,QAAK,IAAI,EAAA,IAAA,EACR,QAAC,kBAAA,GAAA,CAAA,sBAAA,EAAA,EAAuB,GAC1B,CACF,EAAA;AAAA,GACF,EAAA;AAAA,CACF,EAAA;;;;"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export { NewRelicComponent } from './NewRelicComponent.esm.js';
|
|
2
2
|
//# sourceMappingURL=index.esm.js.map
|
package/dist/plugin.esm.js
CHANGED
|
@@ -23,7 +23,7 @@ const newRelicPlugin = createPlugin({
|
|
|
23
23
|
const NewRelicPage = newRelicPlugin.provide(
|
|
24
24
|
createRoutableExtension({
|
|
25
25
|
name: "NewRelicPage",
|
|
26
|
-
component: () => import('./components/NewRelicComponent/index.esm.js').then((m) => m.
|
|
26
|
+
component: () => import('./components/NewRelicComponent/index.esm.js').then((m) => m.NewRelicComponent),
|
|
27
27
|
mountPoint: rootRouteRef
|
|
28
28
|
})
|
|
29
29
|
);
|
package/dist/plugin.esm.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plugin.esm.js","sources":["../src/plugin.ts"],"sourcesContent":["/*\n * Copyright 2020 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { NewRelicClient, newRelicApiRef } from './api';\nimport {\n createApiFactory,\n createPlugin,\n createRouteRef,\n discoveryApiRef,\n fetchApiRef,\n createRoutableExtension,\n} from '@backstage/core-plugin-api';\n\nexport const rootRouteRef = createRouteRef({\n id: 'newrelic',\n});\n\n/** @public */\nexport const newRelicPlugin = createPlugin({\n id: 'newrelic',\n apis: [\n createApiFactory({\n api: newRelicApiRef,\n deps: {\n discoveryApi: discoveryApiRef,\n fetchApi: fetchApiRef,\n },\n factory: ({ discoveryApi, fetchApi }) =>\n new NewRelicClient({ discoveryApi, fetchApi }),\n }),\n ],\n routes: {\n root: rootRouteRef,\n },\n});\n\n/** @public */\nexport const NewRelicPage = newRelicPlugin.provide(\n createRoutableExtension({\n name: 'NewRelicPage',\n component: () =>\n import('./components/NewRelicComponent').then(m => m.
|
|
1
|
+
{"version":3,"file":"plugin.esm.js","sources":["../src/plugin.ts"],"sourcesContent":["/*\n * Copyright 2020 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { NewRelicClient, newRelicApiRef } from './api';\nimport {\n createApiFactory,\n createPlugin,\n createRouteRef,\n discoveryApiRef,\n fetchApiRef,\n createRoutableExtension,\n} from '@backstage/core-plugin-api';\n\nexport const rootRouteRef = createRouteRef({\n id: 'newrelic',\n});\n\n/** @public */\nexport const newRelicPlugin = createPlugin({\n id: 'newrelic',\n apis: [\n createApiFactory({\n api: newRelicApiRef,\n deps: {\n discoveryApi: discoveryApiRef,\n fetchApi: fetchApiRef,\n },\n factory: ({ discoveryApi, fetchApi }) =>\n new NewRelicClient({ discoveryApi, fetchApi }),\n }),\n ],\n routes: {\n root: rootRouteRef,\n },\n});\n\n/** @public */\nexport const NewRelicPage = newRelicPlugin.provide(\n createRoutableExtension({\n name: 'NewRelicPage',\n component: () =>\n import('./components/NewRelicComponent').then(m => m.NewRelicComponent),\n mountPoint: rootRouteRef,\n }),\n);\n"],"names":[],"mappings":";;;AA0BO,MAAM,eAAe,cAAe,CAAA;AAAA,EACzC,EAAI,EAAA;AACN,CAAC;AAGM,MAAM,iBAAiB,YAAa,CAAA;AAAA,EACzC,EAAI,EAAA,UAAA;AAAA,EACJ,IAAM,EAAA;AAAA,IACJ,gBAAiB,CAAA;AAAA,MACf,GAAK,EAAA,cAAA;AAAA,MACL,IAAM,EAAA;AAAA,QACJ,YAAc,EAAA,eAAA;AAAA,QACd,QAAU,EAAA;AAAA,OACZ;AAAA,MACA,OAAA,EAAS,CAAC,EAAE,YAAc,EAAA,QAAA,EACxB,KAAA,IAAI,cAAe,CAAA,EAAE,YAAc,EAAA,QAAA,EAAU;AAAA,KAChD;AAAA,GACH;AAAA,EACA,MAAQ,EAAA;AAAA,IACN,IAAM,EAAA;AAAA;AAEV,CAAC;AAGM,MAAM,eAAe,cAAe,CAAA,OAAA;AAAA,EACzC,uBAAwB,CAAA;AAAA,IACtB,IAAM,EAAA,cAAA;AAAA,IACN,SAAA,EAAW,MACT,OAAO,6CAAgC,EAAE,IAAK,CAAA,CAAA,CAAA,KAAK,EAAE,iBAAiB,CAAA;AAAA,IACxE,UAAY,EAAA;AAAA,GACb;AACH;;;;"}
|
package/package.json
CHANGED
|
@@ -1,18 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage-community/plugin-newrelic",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.11.0",
|
|
4
4
|
"description": "A Backstage plugin that integrates towards New Relic",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "frontend-plugin",
|
|
7
7
|
"pluginId": "newrelic",
|
|
8
8
|
"pluginPackages": [
|
|
9
9
|
"@backstage-community/plugin-newrelic"
|
|
10
|
-
]
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
"main": "dist/index.esm.js",
|
|
15
|
-
"types": "dist/index.d.ts"
|
|
10
|
+
],
|
|
11
|
+
"features": {
|
|
12
|
+
"./alpha": "@backstage/FrontendPlugin"
|
|
13
|
+
}
|
|
16
14
|
},
|
|
17
15
|
"keywords": [
|
|
18
16
|
"backstage",
|
|
@@ -26,8 +24,35 @@
|
|
|
26
24
|
},
|
|
27
25
|
"license": "Apache-2.0",
|
|
28
26
|
"sideEffects": false,
|
|
29
|
-
"
|
|
30
|
-
|
|
27
|
+
"publishConfig": {
|
|
28
|
+
"access": "public"
|
|
29
|
+
},
|
|
30
|
+
"exports": {
|
|
31
|
+
".": {
|
|
32
|
+
"import": "./dist/index.esm.js",
|
|
33
|
+
"types": "./dist/index.d.ts",
|
|
34
|
+
"default": "./dist/index.esm.js"
|
|
35
|
+
},
|
|
36
|
+
"./alpha": {
|
|
37
|
+
"backstage": "@backstage/FrontendPlugin",
|
|
38
|
+
"import": "./dist/alpha.esm.js",
|
|
39
|
+
"types": "./dist/alpha.d.ts",
|
|
40
|
+
"default": "./dist/alpha.esm.js"
|
|
41
|
+
},
|
|
42
|
+
"./package.json": "./package.json"
|
|
43
|
+
},
|
|
44
|
+
"typesVersions": {
|
|
45
|
+
"*": {
|
|
46
|
+
"alpha": [
|
|
47
|
+
"dist/alpha.d.ts"
|
|
48
|
+
],
|
|
49
|
+
"package.json": [
|
|
50
|
+
"package.json"
|
|
51
|
+
]
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
"main": "./dist/index.esm.js",
|
|
55
|
+
"types": "./dist/index.d.ts",
|
|
31
56
|
"files": [
|
|
32
57
|
"dist"
|
|
33
58
|
],
|
|
@@ -41,9 +66,12 @@
|
|
|
41
66
|
"test": "backstage-cli package test"
|
|
42
67
|
},
|
|
43
68
|
"dependencies": {
|
|
69
|
+
"@backstage/core-compat-api": "^0.4.3",
|
|
44
70
|
"@backstage/core-components": "^0.17.3",
|
|
45
71
|
"@backstage/core-plugin-api": "^1.10.8",
|
|
72
|
+
"@backstage/frontend-plugin-api": "^0.10.3",
|
|
46
73
|
"@material-ui/core": "^4.12.2",
|
|
74
|
+
"@material-ui/icons": "^4.9.1",
|
|
47
75
|
"@material-ui/lab": "4.0.0-alpha.61",
|
|
48
76
|
"@types/react": "^16.13.1 || ^17.0.0 || ^18.0.0",
|
|
49
77
|
"parse-link-header": "^2.0.0",
|
|
@@ -68,12 +96,5 @@
|
|
|
68
96
|
"react-dom": "^16.13.1 || ^17.0.0 || ^18.0.0",
|
|
69
97
|
"react-router-dom": "6.0.0-beta.0 || ^6.3.0"
|
|
70
98
|
},
|
|
71
|
-
"typesVersions": {
|
|
72
|
-
"*": {
|
|
73
|
-
"package.json": [
|
|
74
|
-
"package.json"
|
|
75
|
-
]
|
|
76
|
-
}
|
|
77
|
-
},
|
|
78
99
|
"module": "./dist/index.esm.js"
|
|
79
100
|
}
|