@anyshift/backstage-plugin-anyshift 0.1.0-beta.1

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.
Files changed (37) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/LICENSE +176 -0
  3. package/README.md +9 -0
  4. package/dist/api/AnyshiftApi.esm.js +80 -0
  5. package/dist/api/AnyshiftApi.esm.js.map +1 -0
  6. package/dist/components/AnyshiftPermissionBoundary.esm.js +25 -0
  7. package/dist/components/AnyshiftPermissionBoundary.esm.js.map +1 -0
  8. package/dist/components/entity/AnyshiftEntityContent.esm.js +213 -0
  9. package/dist/components/entity/AnyshiftEntityContent.esm.js.map +1 -0
  10. package/dist/components/entity/BriefSections.esm.js +218 -0
  11. package/dist/components/entity/BriefSections.esm.js.map +1 -0
  12. package/dist/components/entity/DatadogLiveSignal.esm.js +190 -0
  13. package/dist/components/entity/DatadogLiveSignal.esm.js.map +1 -0
  14. package/dist/components/entity/EvidenceDisclosure.esm.js +20 -0
  15. package/dist/components/entity/EvidenceDisclosure.esm.js.map +1 -0
  16. package/dist/components/entity/MermaidArchitecture.esm.js +89 -0
  17. package/dist/components/entity/MermaidArchitecture.esm.js.map +1 -0
  18. package/dist/components/entity/SectionPresenters.esm.js +341 -0
  19. package/dist/components/entity/SectionPresenters.esm.js.map +1 -0
  20. package/dist/components/entity/architectureDiagram.esm.js +236 -0
  21. package/dist/components/entity/architectureDiagram.esm.js.map +1 -0
  22. package/dist/components/entity/sectionData.esm.js +127 -0
  23. package/dist/components/entity/sectionData.esm.js.map +1 -0
  24. package/dist/components/explorer/AnyshiftExplorerPage.esm.js +193 -0
  25. package/dist/components/explorer/AnyshiftExplorerPage.esm.js.map +1 -0
  26. package/dist/components/explorer/DatadogOperationsRadar.esm.js +294 -0
  27. package/dist/components/explorer/DatadogOperationsRadar.esm.js.map +1 -0
  28. package/dist/index.d.ts +127 -0
  29. package/dist/index.esm.js +4 -0
  30. package/dist/index.esm.js.map +1 -0
  31. package/dist/package.json.esm.js +96 -0
  32. package/dist/package.json.esm.js.map +1 -0
  33. package/dist/plugin.esm.js +49 -0
  34. package/dist/plugin.esm.js.map +1 -0
  35. package/dist/routes.esm.js +6 -0
  36. package/dist/routes.esm.js.map +1 -0
  37. package/package.json +84 -0
package/package.json ADDED
@@ -0,0 +1,84 @@
1
+ {
2
+ "name": "@anyshift/backstage-plugin-anyshift",
3
+ "version": "0.1.0-beta.1",
4
+ "description": "Read-only Anyshift infrastructure context for Backstage",
5
+ "main": "dist/index.esm.js",
6
+ "types": "dist/index.d.ts",
7
+ "license": "Apache-2.0",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "https://github.com/anyshift-io/graph-api",
11
+ "directory": "integrations/backstage/plugins/anyshift"
12
+ },
13
+ "homepage": "https://github.com/anyshift-io/graph-api/tree/main/integrations/backstage#readme",
14
+ "keywords": [
15
+ "backstage",
16
+ "anyshift",
17
+ "infrastructure",
18
+ "catalog"
19
+ ],
20
+ "publishConfig": {
21
+ "access": "public",
22
+ "main": "dist/index.esm.js",
23
+ "types": "dist/index.d.ts"
24
+ },
25
+ "backstage": {
26
+ "role": "frontend-plugin",
27
+ "pluginId": "anyshift",
28
+ "features": {
29
+ ".": "@backstage/FrontendPlugin"
30
+ },
31
+ "pluginPackages": [
32
+ "@anyshift/backstage-plugin-anyshift",
33
+ "@anyshift/backstage-plugin-anyshift-backend",
34
+ "@anyshift/backstage-plugin-anyshift-common"
35
+ ]
36
+ },
37
+ "sideEffects": false,
38
+ "scripts": {
39
+ "start": "backstage-cli package start",
40
+ "build": "backstage-cli package build",
41
+ "lint": "backstage-cli package lint",
42
+ "prepack": "backstage-cli package prepack && node ../../scripts/package-license.mjs add",
43
+ "postpack": "node ../../scripts/package-license.mjs remove && backstage-cli package postpack",
44
+ "test": "backstage-cli package test",
45
+ "clean": "backstage-cli package clean"
46
+ },
47
+ "dependencies": {
48
+ "@anyshift/backstage-plugin-anyshift-common": "^0.1.0-beta.1",
49
+ "@backstage/catalog-model": "^1.9.0",
50
+ "@backstage/core-components": "^0.18.11",
51
+ "@backstage/frontend-plugin-api": "^0.17.2",
52
+ "@backstage/plugin-catalog-react": "^3.1.0",
53
+ "@backstage/plugin-permission-react": "^0.5.2",
54
+ "@backstage/theme": "^0.7.3",
55
+ "@material-ui/core": "^4.12.2",
56
+ "@material-ui/icons": "^4.9.1",
57
+ "@material-ui/lab": "^4.0.0-alpha.61",
58
+ "mermaid": "^11.15.0"
59
+ },
60
+ "peerDependencies": {
61
+ "react": "^16.13.1 || ^17.0.0 || ^18.0.0",
62
+ "react-dom": "^16.13.1 || ^17.0.0 || ^18.0.0",
63
+ "react-router-dom": "^6.0.0"
64
+ },
65
+ "devDependencies": {
66
+ "@backstage/cli": "^0.36.3",
67
+ "@backstage/test-utils": "^1.7.12",
68
+ "@testing-library/jest-dom": "^6.0.0",
69
+ "@testing-library/react": "^14.0.0",
70
+ "@testing-library/user-event": "^14.0.0",
71
+ "msw": "^1.0.0"
72
+ },
73
+ "files": [
74
+ "dist"
75
+ ],
76
+ "typesVersions": {
77
+ "*": {
78
+ "package.json": [
79
+ "package.json"
80
+ ]
81
+ }
82
+ },
83
+ "module": "./dist/index.esm.js"
84
+ }