chore: rename package

Signed-off-by: benjdlambert <ben@blam.sh>
This commit is contained in:
benjdlambert
2025-06-17 10:17:24 +02:00
parent 2c4e277c44
commit 976951d012
17 changed files with 21 additions and 21 deletions
+53
View File
@@ -0,0 +1,53 @@
{
"name": "@backstage/plugin-mcp-actions-backend",
"version": "0.0.0",
"backstage": {
"role": "backend-plugin",
"pluginId": "mcp",
"pluginPackages": [
"@backstage/plugin-mcp-actions-backend"
]
},
"publishConfig": {
"access": "public",
"main": "dist/index.cjs.js",
"types": "dist/index.d.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/backstage/backstage",
"directory": "plugins/mcp-actions-backend"
},
"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",
"start": "backstage-cli package start",
"test": "backstage-cli package test"
},
"dependencies": {
"@backstage/backend-defaults": "workspace:^",
"@backstage/backend-plugin-api": "workspace:^",
"@backstage/catalog-client": "workspace:^",
"@backstage/errors": "workspace:^",
"@backstage/plugin-catalog-node": "workspace:^",
"@backstage/types": "workspace:^",
"@modelcontextprotocol/sdk": "^1.12.3",
"express": "^4.17.1",
"express-promise-router": "^4.1.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@backstage/backend-test-utils": "workspace:^",
"@backstage/cli": "workspace:^",
"@types/express": "^4.17.6"
}
}