package.json 1.0 KB

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "@vendure/job-queue-plugin",
  3. "version": "3.1.6",
  4. "license": "GPL-3.0-or-later",
  5. "main": "package/index.js",
  6. "types": "package/index.d.ts",
  7. "files": [
  8. "package/**/*"
  9. ],
  10. "private": false,
  11. "scripts": {
  12. "watch": "tsc -p ./tsconfig.build.json --watch",
  13. "build": "rimraf package && tsc -p ./tsconfig.build.json",
  14. "lint": "eslint --fix .",
  15. "test": "vitest --run",
  16. "e2e-wip": "node e2e/check-connection.js || jest --config ../../e2e-common/jest-config.js --runInBand --package=job-queue-plugin",
  17. "ci": "npm run build"
  18. },
  19. "homepage": "https://www.vendure.io/",
  20. "funding": "https://github.com/sponsors/michaelbromley",
  21. "publishConfig": {
  22. "access": "public"
  23. },
  24. "devDependencies": {
  25. "@google-cloud/pubsub": "^2.8.0",
  26. "@vendure/common": "^3.1.6",
  27. "@vendure/core": "^3.1.6",
  28. "bullmq": "^5.4.2",
  29. "ioredis": "^5.3.2",
  30. "rimraf": "^5.0.5",
  31. "typescript": "5.3.3"
  32. }
  33. }