-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "kafka-nestjs",
"version": "1.0.17",
"description": "A structured Kafka integration for NestJS inspired by BullMQ, offering decorators, modular configuration, and a scalable consumer/producer architecture.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "npx tsc",
"prepublishOnly": "npm run build",
"clean": "rimraf dist",
"prebuild": "npm run clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/behrad-kzm/kafka-nestjs.git"
},
"keywords": [
"kafka",
"nestjs",
"typescript"
],
"author": "Behrad Kazemi",
"license": "MIT",
"bugs": {
"url": "https://github.com/behrad-kzm/kafka-nestjs/issues"
},
"homepage": "https://github.com/behrad-kzm/kafka-nestjs#readme",
"peerDependencies": {
"@nestjs/common": "^11.0.0",
"@nestjs/core": "^11.0.0",
"kafkajs": "^2.2.4"
},
"devDependencies": {
"@types/node": "^20.11.24",
"rimraf": "^5.0.5",
"typescript": "^5.3.3"
}
}