techdocs: add common package for annotation constants

Signed-off-by: MT Lewis <mtlewis@users.noreply.github.com>
This commit is contained in:
MT Lewis
2024-07-24 18:04:13 +01:00
parent b424956a35
commit 4698e1f4d4
13 changed files with 153 additions and 0 deletions
+52
View File
@@ -0,0 +1,52 @@
{
"name": "@backstage/plugin-techdocs-common",
"version": "0.0.0",
"description": "Common functionality for TechDocs",
"backstage": {
"role": "common-library",
"pluginId": "techdocs",
"pluginPackages": [
"@backstage/plugin-techdocs",
"@backstage/plugin-techdocs-backend",
"@backstage/plugin-techdocs-common",
"@backstage/plugin-techdocs-node",
"@backstage/plugin-techdocs-react"
]
},
"publishConfig": {
"access": "public",
"main": "dist/index.cjs.js",
"types": "dist/index.d.ts"
},
"keywords": [
"backstage",
"techdocs"
],
"homepage": "https://backstage.io",
"repository": {
"type": "git",
"url": "https://github.com/backstage/backstage",
"directory": "plugins/techdocs-common"
},
"bugs": {
"url": "https://github.com/backstage/backstage/issues"
},
"license": "Apache-2.0",
"sideEffects": false,
"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"
},
"devDependencies": {
"@backstage/cli": "workspace:^"
}
}