redis-kafka 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.js +1 -0
  2. package/package.json +32 -0
package/index.js ADDED
@@ -0,0 +1 @@
1
+ // placeholder — real implementation ships in next release
package/package.json ADDED
@@ -0,0 +1,32 @@
1
+ {
2
+ "name": "redis-kafka",
3
+ "version": "0.0.1",
4
+ "description": "Lightweight event bus for Node.js microservices powered by Redis Streams.",
5
+ "main": "index.js",
6
+ "files": [
7
+ "index.js"
8
+ ],
9
+ "scripts": {
10
+ "build": "tsup"
11
+ },
12
+ "keywords": [
13
+ "redis",
14
+ "streams",
15
+ "event-bus",
16
+ "microservices",
17
+ "kafka",
18
+ "pubsub"
19
+ ],
20
+ "author": "",
21
+ "license": "MIT",
22
+ "repository": {
23
+ "type": "git",
24
+ "url": ""
25
+ },
26
+ "peerDependencies": {
27
+ "ioredis": ">=5.0.0"
28
+ },
29
+ "engines": {
30
+ "node": ">=18.0.0"
31
+ }
32
+ }