add plugin metadata to all plugin packages

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2024-06-11 01:32:43 +02:00
parent c7535dea31
commit d44a20a5cd
137 changed files with 1276 additions and 561 deletions
+27 -19
View File
@@ -1,10 +1,18 @@
{
"name": "@backstage/plugin-kubernetes-react",
"description": "Web library for the kubernetes-react plugin",
"version": "0.4.0-next.2",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
"description": "Web library for the kubernetes-react plugin",
"backstage": {
"role": "web-library",
"pluginId": "kubernetes",
"pluginPackages": [
"@backstage/plugin-kubernetes",
"@backstage/plugin-kubernetes-backend",
"@backstage/plugin-kubernetes-common",
"@backstage/plugin-kubernetes-node",
"@backstage/plugin-kubernetes-react"
]
},
"publishConfig": {
"access": "public",
"main": "dist/index.esm.js",
@@ -15,19 +23,22 @@
"url": "https://github.com/backstage/backstage",
"directory": "plugins/kubernetes-react"
},
"backstage": {
"role": "web-library"
},
"license": "Apache-2.0",
"sideEffects": false,
"configSchema": "config.d.ts",
"main": "src/index.ts",
"types": "src/index.ts",
"files": [
"dist",
"config.d.ts"
],
"scripts": {
"start": "backstage-cli package start",
"build": "backstage-cli package build",
"lint": "backstage-cli package lint",
"test": "backstage-cli package test",
"clean": "backstage-cli package clean",
"lint": "backstage-cli package lint",
"prepack": "backstage-cli package prepack",
"postpack": "backstage-cli package postpack"
"postpack": "backstage-cli package postpack",
"start": "backstage-cli package start",
"test": "backstage-cli package test"
},
"dependencies": {
"@backstage/catalog-model": "workspace:^",
@@ -53,9 +64,6 @@
"xterm-addon-attach": "^0.9.0",
"xterm-addon-fit": "^0.8.0"
},
"peerDependencies": {
"react": "^16.13.1 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@backstage/cli": "workspace:^",
"@backstage/core-app-api": "workspace:^",
@@ -65,8 +73,8 @@
"jest-websocket-mock": "^2.5.0",
"msw": "^1.3.1"
},
"files": [
"dist",
"config.d.ts"
]
"peerDependencies": {
"react": "^16.13.1 || ^17.0.0 || ^18.0.0"
},
"configSchema": "config.d.ts"
}