1
0

package.json 1.1 KB

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