package.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "@vendure/elasticsearch-plugin",
  3. "version": "2.0.0-next.28",
  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": "cross-env PACKAGE=elasticsearch-plugin vitest --config ../../e2e-common/vitest.config.ts --run",
  16. "e2e:watch": "cross-env PACKAGE=elasticsearch-plugin vitest --config ../../e2e-common/vitest.config.ts"
  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": "^2.0.0-next.28",
  30. "@vendure/core": "^2.0.0-next.28",
  31. "rimraf": "^3.0.2",
  32. "typescript": "4.9.5"
  33. }
  34. }