UNPKG

@alti-js/nestjs-elasticsearch

Version:

Elasticsearch and OpenSearch integration with NestJS - Dual engine support with unified API and multi-region capabilities

103 lines (102 loc) 2.92 kB
{ "name": "@alti-js/nestjs-elasticsearch", "version": "0.5.7", "description": "Elasticsearch and OpenSearch integration with NestJS - Dual engine support with unified API and multi-region capabilities", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "build": "nest build", "prepare": "tsc --project tsconfig.build.json", "prepublishOnly": "npm run build && npm test", "publish:public": "npm run build && npm version patch && npm publish --access public", "test": "jest", "test:watch": "jest --watch", "test:cov": "jest --coverage", "test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand", "test:e2e": "jest --config ./test/jest-e2e.json --detectOpenHandles --runInBand" }, "repository": { "type": "git", "url": "git+https://github.com/alti-js/nestjs-elasticsearch.git" }, "keywords": [ "nestjs", "elasticsearch", "opensearch", "search", "indexing", "typescript", "nodejs", "dual-engine", "unified-api", "multi-region", "clustering" ], "author": "Angel Sanchez", "license": "MIT", "bugs": { "url": "https://github.com/alti-js/nestjs-elasticsearch/issues" }, "homepage": "https://github.com/alti-js/nestjs-elasticsearch/#readme", "engines": { "node": ">=16.0.0", "npm": ">=8.0.0" }, "publishConfig": { "access": "public" }, "peerDependencies": { "@nestjs/common": "^10.0.0", "@nestjs/core": "^10.0.0" }, "dependencies": { "@elastic/elasticsearch": "^7.13.0", "@nestjs/common": "^10.0.0", "@nestjs/core": "^10.0.0", "@nestjs/elasticsearch": "^10.0.2", "@nestjs/microservices": "^10.4.15", "@opensearch-project/opensearch": "^2.4.0", "reflect-metadata": "^0.2.0", "rxjs": "^7.8.1" }, "devDependencies": { "@eslint/js": "^9.35.0", "@nestjs/cli": "^10.0.0", "@nestjs/schematics": "^10.0.0", "@nestjs/testing": "^10.0.0", "@types/express": "^5.0.0", "@types/jest": "^29.5.2", "@types/node": "^20.3.1", "@types/supertest": "^6.0.0", "@typescript-eslint/eslint-plugin": "^8.0.0", "@typescript-eslint/parser": "^8.0.0", "eslint": "^8.57.1", "eslint-config-prettier": "^9.0.0", "eslint-plugin-prettier": "^5.0.0", "globals": "^16.3.0", "jest": "^29.5.0", "prettier": "^3.0.0", "source-map-support": "^0.5.21", "supertest": "^7.0.0", "ts-jest": "^29.1.0", "ts-loader": "^9.4.3", "ts-node": "^10.9.1", "tsconfig-paths": "^4.2.0", "typescript": "^5.1.3", "typescript-eslint": "^8.43.0" }, "jest": { "moduleFileExtensions": [ "js", "json", "ts" ], "rootDir": "src", "testRegex": ".spec.ts$", "transform": { "^.+\\.(t|j)s$": "ts-jest" }, "coverageDirectory": "../coverage", "testEnvironment": "node" } }