package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "@vendure/elasticsearch-plugin",
  3. "version": "3.2.4",
  4. "license": "GPL-3.0-or-later",
  5. "main": "lib/index.js",
  6. "types": "lib/index.d.ts",
  7. "files": [
  8. "lib/**/*"
  9. ],
  10. "repository": {
  11. "type": "git",
  12. "url": "https://github.com/vendure-ecommerce/vendure"
  13. },
  14. "scripts": {
  15. "watch": "tsc -p ./tsconfig.build.json --watch",
  16. "build": "rimraf lib && tsc -p ./tsconfig.build.json",
  17. "lint": "eslint --fix .",
  18. "test": "vitest --run",
  19. "e2e": "cross-env PACKAGE=elasticsearch-plugin vitest --config ../../e2e-common/vitest.config.mts --run",
  20. "e2e:watch": "cross-env PACKAGE=elasticsearch-plugin vitest --config ../../e2e-common/vitest.config.mts"
  21. },
  22. "homepage": "https://www.vendure.io/",
  23. "funding": "https://github.com/sponsors/michaelbromley",
  24. "publishConfig": {
  25. "access": "public"
  26. },
  27. "dependencies": {
  28. "@elastic/elasticsearch": "~7.9.1",
  29. "deepmerge": "^4.2.2",
  30. "fast-deep-equal": "^3.1.3"
  31. },
  32. "devDependencies": {
  33. "@vendure/common": "3.2.4",
  34. "@vendure/core": "3.2.4",
  35. "rimraf": "^5.0.5",
  36. "typescript": "5.8.2"
  37. }
  38. }