-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 1.67 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "kafka-lz4-lite",
"version": "1.0.5",
"description": "Pure JS Kafka LZ4 codec for kafkajs",
"module": "dist/esm/index.js",
"main": "dist/cjs/index.js",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"./worker": {
"import": "./dist/esm/worker.js",
"require": "./dist/cjs/worker.js"
}
},
"typesVersions": {
"*": {
"worker": [
"./dist/worker.d.ts"
],
"*": [
"./dist/index.d.ts"
]
}
},
"scripts": {
"build": "rimraf dist && tsc && rollup -c"
},
"repository": {
"type": "git",
"url": "https://github.com/alex-vukov/kafka-lz4-lite.git"
},
"keywords": [
"kafka",
"kafkajs",
"lz4",
"lz4js",
"codec",
"compression",
"decompression"
],
"author": "Alexander Vukov",
"license": "MIT",
"bugs": {
"url": "https://github.com/alex-vukov/kafka-lz4-lite/issues"
},
"homepage": "https://github.com/alex-vukov/kafka-lz4-lite#readme",
"files": [
"dist"
],
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.18.10",
"@babel/plugin-transform-runtime": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^13.3.0",
"@types/estree": "^1.0.0",
"@types/node": "^20.2.5",
"rimraf": "^3.0.2",
"rollup": "^2.78.1",
"typescript": "^5.0.4"
},
"dependencies": {
"@babel/runtime": "^7.18.9",
"lz4js": "^0.2.0",
"piscina": "^3.2.0"
},
"peerDependencies": {
"kafkajs": "^2.0.0"
}
}