UNPKG

@iamdeniz/aws-sqs-consumer

Version:

Advanced AWS SQS message consumer with retry, DLQ, batch processing, metrics, and middleware support

87 lines (86 loc) 2.2 kB
{ "name": "@iamdeniz/aws-sqs-consumer", "version": "1.0.8", "description": "Advanced AWS SQS message consumer with retry, DLQ, batch processing, metrics, and middleware support", "main": "dist/cjs/index.js", "module": "dist/esm/index.js", "types": "dist/cjs/index.d.ts", "exports": { ".": { "import": "./dist/esm/index.js", "require": "./dist/cjs/index.js", "types": "./dist/cjs/index.d.ts" } }, "files": [ "dist", "LICENSE", "README.md", "CHANGELOG.md" ], "scripts": { "clean": "rimraf dist", "build": "npm run clean && npm run build:cjs && npm run build:esm", "build:cjs": "tsc -p tsconfig.cjs.json", "build:esm": "tsc -p tsconfig.esm.json", "lint": "eslint --ext .ts", "lint:fix": "eslint --fix .", "prepublishOnly": "npm run build", "dev": "nodemon $npm_config_name" }, "keywords": [ "aws", "sqs", "fifo", "middleware", "filter", "priority", "batch", "credential", "queue", "consumer", "retries", "dlq", "middleware", "typescript" ], "author": "", "license": "MIT", "dependencies": { "@aws-sdk/client-sqs": "^3.300.0", "@aws-sdk/credential-providers": "^3.782.0", "@aws-sdk/node-http-handler": "^3.370.0", "https-proxy-agent": "^7.0.6" }, "devDependencies": { "@types/jest": "^29.5.0", "@types/node": "^18.15.11", "eslint": "^8.37.0", "eslint-config-airbnb-base": "^15.0.0", "eslint-config-airbnb-typescript": "^18.0.0", "eslint-config-prettier": "^10.1.1", "eslint-plugin-import": "^2.31.0", "eslint-plugin-prettier": "^5.2.6", "jest": "^29.5.0", "nodemon": "^3.1.9", "rimraf": "^6.0.1", "ts-jest": "^29.1.0", "ts-node": "^10.9.2", "typedoc": "^0.24.0", "typescript": "^5.0.3" }, "engines": { "node": ">=14.0.0" }, "repository": { "type": "git", "url": "git+https://github.com/BurakDeniz01/aws-sqs-consumer.git" }, "directories": { "example": "examples" }, "bugs": { "url": "https://github.com/BurakDeniz01/aws-sqs-consumer/issues" }, "homepage": "https://github.com/BurakDeniz01/aws-sqs-consumer#readme" }