9266b80ab3
* Implements a collator for tech docs. * Retrieves mkdocs created search index for entities that have documentation configured * Registers collator to expose tech docs content to be searchable * Adds pagination to example search * Modifies example search to contain tech docs * Displays docs results with link to docs and the entity name as title. * Creates a reusable type filter to be located in the search package. * Add tests for type filter Signed-off-by: Jussi Hallila <jussi@hallila.com>
64 lines
1.6 KiB
JSON
64 lines
1.6 KiB
JSON
{
|
|
"name": "@backstage/plugin-techdocs-backend",
|
|
"version": "0.8.7",
|
|
"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/techdocs-backend"
|
|
},
|
|
"keywords": [
|
|
"backstage",
|
|
"techdocs"
|
|
],
|
|
"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.8.6",
|
|
"@backstage/catalog-client": "^0.3.16",
|
|
"@backstage/catalog-model": "^0.9.0",
|
|
"@backstage/config": "^0.1.5",
|
|
"@backstage/errors": "^0.1.1",
|
|
"@backstage/search-common": "^0.1.2",
|
|
"@backstage/techdocs-common": "^0.6.8",
|
|
"@types/express": "^4.17.6",
|
|
"cross-fetch": "^3.0.6",
|
|
"dockerode": "^3.2.1",
|
|
"express": "^4.17.1",
|
|
"express-promise-router": "^4.1.0",
|
|
"fs-extra": "9.1.0",
|
|
"knex": "^0.95.1",
|
|
"lodash": "^4.17.21",
|
|
"p-limit": "^3.1.0",
|
|
"winston": "^3.2.1"
|
|
},
|
|
"devDependencies": {
|
|
"@backstage/cli": "^0.7.4",
|
|
"@backstage/test-utils": "^0.1.14",
|
|
"@types/dockerode": "^3.2.1",
|
|
"msw": "^0.29.0",
|
|
"supertest": "^6.1.3"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"config.d.ts"
|
|
],
|
|
"configSchema": "config.d.ts"
|
|
}
|