package.json 932 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "@vendure/elasticsearch-plugin",
  3. "version": "1.3.2",
  4. "license": "MIT",
  5. "main": "lib/index.js",
  6. "types": "lib/index.d.ts",
  7. "files": [
  8. "lib/**/*"
  9. ],
  10. "scripts": {
  11. "watch": "tsc -p ./tsconfig.build.json --watch",
  12. "build": "rimraf lib && tsc -p ./tsconfig.build.json",
  13. "lint": "tslint --fix --project ./",
  14. "test": "jest --config ./jest.config.js",
  15. "e2e": "node e2e/check-connection.js || jest --config ../../e2e-common/jest-config.js --package=elasticsearch-plugin"
  16. },
  17. "homepage": "https://www.vendure.io/",
  18. "funding": "https://github.com/sponsors/michaelbromley",
  19. "publishConfig": {
  20. "access": "public"
  21. },
  22. "dependencies": {
  23. "@elastic/elasticsearch": "^7.9.1",
  24. "deepmerge": "^4.2.2",
  25. "fast-deep-equal": "^3.1.3"
  26. },
  27. "devDependencies": {
  28. "@vendure/common": "^1.3.2",
  29. "@vendure/core": "^1.3.2",
  30. "rimraf": "^3.0.2",
  31. "typescript": "4.3.5"
  32. }
  33. }