Split to kafka backend plugin

This commit is contained in:
Nir Gazit
2021-01-09 21:18:41 +02:00
parent 343026aade
commit c139285492
21 changed files with 18886 additions and 158 deletions
+48
View File
@@ -0,0 +1,48 @@
{
"name": "@backstage/plugin-kafka-backend",
"version": "0.1.1",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
"private": false,
"publishConfig": {
"access": "public",
"main": "dist/index.cjs.js",
"types": "dist/index.d.ts"
},
"homepage": "https://backstage.io",
"repository": {
"type": "git",
"url": "https://github.com/backstage/backstage",
"directory": "plugins/kafka-backend"
},
"keywords": [
"backstage",
"kafka"
],
"configSchema": "config.d.ts",
"scripts": {
"start": "backstage-cli backend:dev",
"build": "backstage-cli backend:build",
"lint": "backstage-cli lint",
"test": "backstage-cli test",
"prepack": "backstage-cli prepack",
"postpack": "backstage-cli postpack",
"clean": "backstage-cli clean"
},
"dependencies": {
"@backstage/backend-common": "^0.4.1",
"@backstage/catalog-model": "^0.6.0",
"@backstage/config": "^0.1.2",
"kafkajs": "^1.16.0-beta.6",
"winston": "^3.3.3"
},
"devDependencies": {
"@backstage/cli": "^0.4.2",
"supertest": "^4.0.2"
},
"files": [
"dist",
"schema.d.ts"
]
}