-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.13 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
{
"name": "kafka-console",
"version": "2.0.27",
"description": "Kafka CLI tool",
"main": "index.js",
"bin": {
"kcli": "build/cli.js",
"kafka-console": "build/cli.js"
},
"scripts": {
"build": "rm -rf build && tsc",
"test": "NODE_ENV=test jest",
"test:cov": "COVERAGE=1 NODE_ENV=test jest",
"kcli": "ts-node src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/3axap4eHko/kafka-console.git"
},
"keywords": [
"kafka",
"cli",
"commands",
"sasl",
"consumer",
"producer"
],
"author": "Ivan Zakharchanka",
"license": "MIT",
"bugs": {
"url": "https://github.com/3axap4eHko/kafka-console/issues"
},
"homepage": "https://github.com/3axap4eHko/kafka-console#readme",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.17.12",
"dotenv": "^16.4.7",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"dependencies": {
"commander": "^12.1.0",
"evnty": "^2.1.106",
"kafkajs": "^2.2.4"
},
"packageManager": "pnpm@9"
}