Path: blob/master/plugins/search-backend-module-elasticsearch/package.json
34725 views
{1"name": "@backstage/plugin-search-backend-module-elasticsearch",2"version": "1.8.2-next.1",3"description": "A module for the search backend that implements search using ElasticSearch",4"backstage": {5"role": "backend-plugin-module",6"pluginId": "search",7"pluginPackage": "@backstage/plugin-search-backend"8},9"publishConfig": {10"access": "public"11},12"homepage": "https://backstage.io",13"repository": {14"type": "git",15"url": "https://github.com/backstage/backstage",16"directory": "plugins/search-backend-module-elasticsearch"17},18"license": "Apache-2.0",19"exports": {20".": "./src/index.ts",21"./alpha": "./src/alpha.ts",22"./package.json": "./package.json"23},24"main": "src/index.ts",25"types": "src/index.ts",26"typesVersions": {27"*": {28"alpha": [29"src/alpha.ts"30],31"package.json": [32"package.json"33]34}35},36"files": [37"dist",38"config.d.ts"39],40"scripts": {41"build": "backstage-cli package build",42"clean": "backstage-cli package clean",43"lint": "backstage-cli package lint",44"prepack": "backstage-cli package prepack",45"postpack": "backstage-cli package postpack",46"start": "backstage-cli package start",47"test": "backstage-cli package test"48},49"dependencies": {50"@backstage/backend-plugin-api": "workspace:^",51"@backstage/config": "workspace:^",52"@backstage/integration-aws-node": "workspace:^",53"@backstage/plugin-search-backend-node": "workspace:^",54"@backstage/plugin-search-common": "workspace:^",55"@elastic/elasticsearch": "^7.13.0",56"@opensearch-project/opensearch": "^2.2.1",57"aws4": "^1.12.0",58"elastic-builder": "^2.16.0",59"lodash": "^4.17.21",60"uuid": "^11.0.0"61},62"devDependencies": {63"@backstage/backend-test-utils": "workspace:^",64"@backstage/cli": "workspace:^",65"@elastic/elasticsearch-mock": "^1.0.0",66"@short.io/opensearch-mock": "^0.4.0",67"@types/aws4": "^1.5.1"68},69"configSchema": "config.d.ts"70}717273