-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.04 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
{
"name": "react-zlib-js",
"version": "2.1.0",
"description": "Pure javascript implementation of Zlib nodejs core module. The zlib module provides compression functionality implemented using Gzip, Deflate/Inflate, and Brotli. Compatible with Node.js 22.x LTS.",
"main": "index.js",
"scripts": {
"build": "browserify src/entry.js -s zlib -o index.js",
"build:buffer": "browserify node_modules/buffer/index.js -s buffer -o buffer.js",
"test": "node test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anuraghkp1/zlib.git"
},
"keywords": [
"Nodejs",
"Core",
"Zlib",
"Gzip",
"Brotli",
"compression",
"deflate",
"inflate",
"react-native"
],
"author": "Anuragh K.P",
"license": "MIT",
"bugs": {
"url": "https://github.com/anuraghkp1/zlib/issues"
},
"homepage": "https://github.com/anuraghkp1/zlib#readme",
"dependencies": {
"brotli": "^1.3.3",
"pako": "^1.0.11"
},
"devDependencies": {
"@types/node": "^25.5.0",
"browserify": "^17.0.0"
}
}