1
0

package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "@vendure/elasticsearch-plugin",
  3. "version": "3.1.7",
  4. "license": "GPL-3.0-or-later",
  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": "eslint --fix .",
  14. "test": "vitest --run",
  15. "e2e": "cross-env PACKAGE=elasticsearch-plugin vitest --config ../../e2e-common/vitest.config.mts --run",
  16. "e2e:watch": "cross-env PACKAGE=elasticsearch-plugin vitest --config ../../e2e-common/vitest.config.mts"
  17. },
  18. "homepage": "https://www.vendure.io/",
  19. "funding": "https://github.com/sponsors/michaelbromley",
  20. "publishConfig": {
  21. "access": "public"
  22. },
  23. "dependencies": {
  24. "@elastic/elasticsearch": "~7.9.1",
  25. "deepmerge": "^4.2.2",
  26. "fast-deep-equal": "^3.1.3"
  27. },
  28. "devDependencies": {
  29. "@vendure/common": "^3.1.7",
  30. "@vendure/core": "^3.1.7",
  31. "rimraf": "^5.0.5",
  32. "typescript": "5.3.3"
  33. }
  34. }