{
	"name": "valkey-redis-eventbus",
	"version": "1.0.1",
	"description": "A lightweight event bus implementation using Redis (Valkey) for scalable inter-process communication in Node.js applications.",
	"main": "build/index.js",
	"typings": "build/index",
	"repository": {
		"type": "git",
		"url": "git+https://github.com/souravdiwan98/valkey-redis-eventbus.git"
	},
	"publishConfig": {
		"registry": "https://registry.npmjs.org/"
	},
	"author": "souradiwan98@gmail.com",
	"license": "MIT",
	"devDependencies": {
		"@types/jest": "^29.5.11",
		"jest": "^29.7.0",
		"ts-jest": "^29.3.4",
		"ts-node": "^4.1.0",
		"tslint": "^5.8.0",
		"tslint-eslint-rules": "^4.1.1",
		"typescript": "^5.8.3"
	},
	"dependencies": {
		"redis": "^4.7.1"
	},
	"scripts": {
		"build": "tsc",
		"lint": "node node_modules/tslint/bin/tslint --project tsconfig.json --config tslint.json",
		"test": "jest --forceExit --config=jest.config.json",
		"prepublishOnly": "npm install && npm run build"
	},
	"keywords": [
		"redis",
		"valkey",
		"eventbus",
		"event-bus",
		"pubsub",
		"nodejs",
		"typescript",
		"inter-process-communication",
		"messaging",
		"distributed",
		"microservices"
	]
}