-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.46 KB
/
package.json
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
42
43
44
45
46
47
48
49
50
51
52
{
"name": "@indoomni/strapi-plugin-kafkajs",
"version": "1.2.11",
"description": "Wrapper for KafkaJS library to be used with Strapi apps.",
"strapi": {
"name": "kafkajs",
"description": "Wrapper for KafkaJS library to be used with Strapi apps. You are going to need a live Kafka instance/cluster to be running. The Strapi app will be able to act as publisher and/or subscriber. As an added bonus, you can setup multiple publishers as well as subscribers within the same Strapi app.",
"kind": "plugin",
"displayName": "Strapi KafkaJS library wrapper"
},
"dependencies": {
"kafkajs": "^2.2.2",
"util": "^0.12.5",
"uuid": "^9.0.0"
},
"peerDependencies": {
"@strapi/strapi": "^4.0.0"
},
"author": "Iman Sjamhudi <[email protected]>",
"maintainers": [
"Iman Sjamhudi <[email protected]>"
],
"engines": {
"node": ">=14.19.1 <=18.x.x",
"npm": ">=6.0.0"
},
"license": "MIT",
"main": "strapi-server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/indoomni/strapi-plugin-kafkajs.git"
},
"keywords": [
"strapi",
"plugin",
"kafka",
"kafkajs",
"publisher",
"subscriber",
"pub",
"sub",
"producer",
"consumer"
],
"bugs": {
"url": "https://github.com/indoomni/strapi-plugin-kafkajs/issues"
},
"homepage": "https://github.com/indoomni/strapi-plugin-kafkajs#readme"
}