| 12345678910111213141516171819202122232425262728293031323334353637 |
- {
- "name": "@vendure/job-queue-plugin",
- "version": "3.3.2",
- "license": "GPL-3.0-or-later",
- "main": "package/index.js",
- "types": "package/index.d.ts",
- "files": [
- "package/**/*"
- ],
- "repository": {
- "type": "git",
- "url": "https://github.com/vendure-ecommerce/vendure"
- },
- "private": false,
- "scripts": {
- "watch": "tsc -p ./tsconfig.build.json --watch",
- "build": "rimraf package && tsc -p ./tsconfig.build.json",
- "lint": "eslint --fix .",
- "test": "vitest --run",
- "e2e-wip": "node e2e/check-connection.js || jest --config ../../e2e-common/jest-config.js --runInBand --package=job-queue-plugin",
- "ci": "npm run build"
- },
- "homepage": "https://www.vendure.io/",
- "funding": "https://github.com/sponsors/michaelbromley",
- "publishConfig": {
- "access": "public"
- },
- "devDependencies": {
- "@google-cloud/pubsub": "^2.8.0",
- "@vendure/common": "3.3.2",
- "@vendure/core": "3.3.2",
- "bullmq": "^5.4.2",
- "ioredis": "^5.3.2",
- "rimraf": "^5.0.5",
- "typescript": "5.8.2"
- }
- }
|