fastify-rabbitmq
Version:
A Fastify RabbitMQ Plugin Developed in Pure TypeScript.
97 lines (96 loc) • 2.95 kB
JSON
{
"name": "fastify-rabbitmq",
"version": "3.2.0",
"description": "A Fastify RabbitMQ Plugin Developed in Pure TypeScript.",
"module": "./lib/esm/index.js",
"main": "./lib/cjs/index.js",
"types": "./lib/types/index.d.ts",
"exports": {
".": {
"types": "./lib/types/index.d.ts",
"import": "./lib/esm/index.js",
"require": "./lib/cjs/index.js",
"default": "./lib/cjs/index.js"
}
},
"files": [
"lib/",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=20.11.0"
},
"scripts": {
"clean": "rm -rf coverage docs lib temp",
"build": "tsc -p src/tsconfig.esm.json && tsc -p src/tsconfig.cjs.json && tsc -p src/tsconfig.types.json && ./bin/build-types.sh",
"build:watch": "tsc -p src/tsconfig.esm.json -w",
"build:watch:cjs": "tsc -p src/tsconfig.cjs.json -w",
"npm:lint": "npmPkgJsonLint .",
"format": "prettier --write 'README.md' 'src/**/*.ts' '__tests__/**/*.ts'",
"lint": "npm run npm:lint && eslint | snazzy",
"lint:fix": "npm run npm:lint && eslint --fix | snazzy",
"pack": "npm pack",
"prepublishOnly": "npm run clean && npm run build && npm run pack",
"test": "vitest run",
"test:verbose": "vitest run --reporter verbose",
"test:watch": "vitest watch",
"test:coverage": "vitest --coverage",
"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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bugs5382/fastify-rabbitmq.git"
},
"keywords": [
"rabbitmq-client",
"typescript",
"rabbitmq",
"fastify",
"fastify-plugin"
],
"author": "Shane Froebel",
"license": "MIT",
"bugs": {
"url": "https://github.com/Bugs5382/fastify-rabbitmq/issues"
},
"homepage": "https://github.com/Bugs5382/fastify-rabbitmq#readme",
"dependencies": {
"@fastify/error": "^4.1.0",
"fastify-plugin": "^5.0.1",
"rabbitmq-client": "^5.0.2"
},
"devDependencies": {
"@eslint/js": "^9.23.0",
"@shipgirl/typedoc-plugin-versions": "^0.3.0",
"@types/node": "^22.13.13",
"@types/tcp-port-used": "^1.0.4",
"@typescript-eslint/eslint-plugin": "^8.28.0",
"@typescript-eslint/parser": "^8.28.0",
"@vitest/coverage-v8": "^3.0.9",
"@vitest/ui": "^3.0.9",
"eslint": "^9.23.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.4",
"fastify": "^5.2.1",
"npm-check-updates": "^17.1.16",
"npm-package-json-lint": "^8.0.0",
"npm-package-json-lint-config-default": "^7.0.1",
"pre-commit": "^1.2.2",
"snazzy": "^9.0.0",
"ts-node": "^10.9.2",
"tsd": "^0.31.2",
"typedoc": "^0.28.1",
"typescript": "^5.8.2",
"typescript-eslint": "^8.28.0",
"vitest": "^3.0.9"
},
"precommit": [
"test",
"build",
"lint:fix"
]
}