package.json 677 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "@vendure/elasticsearch-plugin",
  3. "version": "0.5.0",
  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. },
  16. "publishConfig": {
  17. "access": "public"
  18. },
  19. "dependencies": {
  20. "@elastic/elasticsearch": "^7.1.0",
  21. "deepmerge": "^4.0.0"
  22. },
  23. "devDependencies": {
  24. "@vendure/common": "^0.5.0",
  25. "@vendure/core": "^0.5.0",
  26. "rimraf": "^3.0.0",
  27. "typescript": "~3.5.3"
  28. }
  29. }