{
  "name": "redis-smq-web-server",
  "version": "10.1.2",
  "description": "Web server for RedisSMQ Web UI: serves the SPA and hosts or proxies the RedisSMQ REST API.",
  "author": "Weyoss <weyoss@outlook.com>",
  "license": "MIT",
  "keywords": [
    "redis",
    "message queue",
    "message-queue",
    "job queue",
    "job-queue",
    "task queue",
    "task-queue",
    "rabbitmq",
    "kafka",
    "background jobs",
    "background-jobs",
    "delayed jobs",
    "delayed-jobs",
    "scheduled jobs",
    "scheduled-jobs",
    "dead letter",
    "dead-letter",
    "priority queue",
    "priority-queue",
    "worker"
  ],
  "homepage": "https://github.com/weyoss/redis-smq",
  "publishConfig": {
    "registry": "https://registry.npmjs.org"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/weyoss/redis-smq.git"
  },
  "bugs": {
    "url": "https://github.com/weyoss/redis-smq/issues"
  },
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "bin": {
    "redis-smq-web-server": "./dist/esm/bin/cli.js"
  },
  "dependencies": {
    "commander": "14.0.2",
    "express": "4.22.1",
    "http-proxy-middleware": "3.0.5"
  },
  "devDependencies": {
    "@types/express": "4.17.25"
  },
  "peerDependencies": {
    "@redis/client": "^5",
    "ioredis": "^5",
    "redis-smq": "^10.1.2",
    "redis-smq-common": "^10.1.2",
    "redis-smq-rest-api": "^10.1.2",
    "redis-smq-web-ui": "^10.1.2"
  },
  "peerDependenciesMeta": {
    "@redis/client": {
      "optional": true
    },
    "ioredis": {
      "optional": true
    }
  },
  "engineStrict": true,
  "engines": {
    "node": ">=20"
  },
  "scripts": {
    "build": "scripts/build.sh",
    "dev": "tsc -w & node --watch dist/index.js",
    "test": "../../scripts/test_workspace_esm.sh"
  }
}