UNPKG

fastify-rabbitmq

Version:

A Fastify RabbitMQ Plugin Developed in Pure TypeScript.

102 lines (101 loc) 3.08 kB
{ "name": "fastify-rabbitmq", "version": "3.3.0", "description": "A Fastify RabbitMQ Plugin Developed in Pure TypeScript.", "keywords": [ "rabbitmq-client", "typescript", "rabbitmq", "fastify", "fastify-plugin" ], "homepage": "https://github.com/Bugs5382/fastify-rabbitmq#readme", "bugs": { "url": "https://github.com/Bugs5382/fastify-rabbitmq/issues" }, "repository": { "type": "git", "url": "git+https://github.com/Bugs5382/fastify-rabbitmq.git" }, "license": "MIT", "author": "Shane Froebel", "exports": { ".": { "types": "./lib/types/index.d.ts", "import": "./lib/esm/index.mjs", "require": "./lib/cjs/index.js", "default": "./lib/cjs/index.js" } }, "main": "./lib/cjs/index.js", "module": "./lib/esm/index.mjs", "types": "./lib/types/index.d.ts", "files": [ "lib/", "README.md", "LICENSE" ], "scripts": { "build": "tsup", "build:dev": "NODE_ENV=development tsup", "clean": "rm -rf coverage docs lib temp", "format:check": "prettier --check '**/*.{md,ts,json,mts}'", "format:write": "prettier --write '**/*.{md,ts,json,mts}'", "lint": "npm run lint:npm && eslint | snazzy && npm run format:check", "lint:fix": "npm run lint:npm && eslint --fix | snazzy && npm run format:write", "lint:npm": "npmPkgJsonLint .", "lint:package": "npx sort-package-json", "pack": "npm pack", "prepublishOnly": "npm run clean && npm run build && npm run pack", "test": "vitest run", "test:coverage": "vitest --coverage", "test:verbose": "vitest run --reporter verbose", "test:watch": "vitest watch", "typedoc": "typedoc", "typedoc:watch": "typedoc -watch", "update": "npx npm-check-updates -u --enginesNode && npm run update:post-update", "update:post-update": "npm install && npm run test" }, "dependencies": { "@fastify/error": "^4.1.0", "fastify-plugin": "^5.0.1", "rabbitmq-client": "^5.0.4" }, "devDependencies": { "@eslint/js": "^9.28.0", "@ianvs/prettier-plugin-sort-imports": "^4.4.2", "@shipgirl/typedoc-plugin-versions": "^0.3.1", "@types/node": "^22.15.29", "@typescript-eslint/eslint-plugin": "^8.33.0", "@typescript-eslint/parser": "^8.33.0", "@vitest/coverage-v8": "^3.1.4", "@vitest/ui": "^3.1.4", "eslint": "^9.28.0", "eslint-config-prettier": "^10.1.5", "eslint-plugin-prettier": "^5.4.1", "eslint-plugin-sort-class-members": "^1.21.0", "fastify": "^5.3.3", "npm-check-updates": "^18.0.1", "npm-package-json-lint": "^8.0.0", "npm-package-json-lint-config-default": "^7.0.1", "pre-commit": "^1.2.2", "prettier-plugin-organize-imports": "^4.1.0", "snazzy": "^9.0.0", "sort-package-json": "^3.2.1", "ts-node": "^10.9.2", "tsd": "^0.32.0", "tsup": "^8.5.0", "typedoc": "^0.28.5", "typescript": "^5.8.3", "typescript-eslint": "^8.33.0", "vitest": "^3.1.4" }, "engines": { "node": ">=20.11.0" }, "precommit": [ "test", "build", "lint:fix" ] }