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
+23 -18
View File
@@ -1,10 +1,15 @@
{
"name": "@backstage/plugin-app-node",
"description": "Node.js library for the app plugin",
"version": "0.1.19-next.1",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
"description": "Node.js library for the app plugin",
"backstage": {
"role": "node-library",
"pluginId": "app",
"pluginPackages": [
"@backstage/plugin-app-backend",
"@backstage/plugin-app-node"
]
},
"publishConfig": {
"access": "public",
"main": "dist/index.cjs.js",
@@ -15,28 +20,28 @@
"url": "https://github.com/backstage/backstage",
"directory": "plugins/app-node"
},
"backstage": {
"role": "node-library"
},
"scripts": {
"build": "backstage-cli package build",
"lint": "backstage-cli package lint",
"test": "backstage-cli package test",
"clean": "backstage-cli package clean",
"prepack": "backstage-cli package prepack",
"postpack": "backstage-cli package postpack"
},
"devDependencies": {
"@backstage/cli": "workspace:^"
},
"license": "Apache-2.0",
"main": "src/index.ts",
"types": "src/index.ts",
"files": [
"dist"
],
"scripts": {
"build": "backstage-cli package build",
"clean": "backstage-cli package clean",
"lint": "backstage-cli package lint",
"prepack": "backstage-cli package prepack",
"postpack": "backstage-cli package postpack",
"test": "backstage-cli package test"
},
"dependencies": {
"@backstage/backend-plugin-api": "workspace:^",
"@backstage/config-loader": "workspace:^",
"@types/express": "^4.17.6",
"express": "^4.17.1",
"fs-extra": "^11.2.0"
},
"devDependencies": {
"@backstage/cli": "workspace:^"
}
}