zlib-streams 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.clang-format +3 -0
- package/.gitmodules +3 -0
- package/.prettierignore +5 -0
- package/Makefile +441 -0
- package/README.md +35 -0
- package/dist/zlib-streams.js +157 -0
- package/dist/zlib-streams.wasm +0 -0
- package/package.json +31 -0
- package/src/inflate9.c +725 -0
- package/src/inflate9.h +16 -0
- package/src/wasm/api/zlib-streams.js +157 -0
- package/src/wasm/deflate_stream_wasm.c +103 -0
- package/src/wasm/inflate9_stream_wasm.c +89 -0
- package/src/wasm/inflate_stream_wasm.c +99 -0
package/package.json
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "zlib-streams",
|
|
3
|
+
"description": "WASM-based Compression Streams API implementation using zlib, with support for deflate64 decompression.",
|
|
4
|
+
"author": "Gildas Lormeau",
|
|
5
|
+
"license": "BSD-3-Clause",
|
|
6
|
+
"version": "1.0.0",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"keywords": [
|
|
9
|
+
"deflate",
|
|
10
|
+
"gzip",
|
|
11
|
+
"deflate64",
|
|
12
|
+
"web-streams",
|
|
13
|
+
"compression-streams"
|
|
14
|
+
],
|
|
15
|
+
"exports": {
|
|
16
|
+
"./package.json": "./package.json",
|
|
17
|
+
"./zlib-streams.js": "./dist/zlib-streams.js",
|
|
18
|
+
"./zlib-streams.wasm": "./dist/zlib-streams.wasm"
|
|
19
|
+
},
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "git+https://github.com/gildas-lormeau/zlib-streams.git"
|
|
23
|
+
},
|
|
24
|
+
"bugs": {
|
|
25
|
+
"url": "https://github.com/gildas-lormeau/zlib-streams/issues"
|
|
26
|
+
},
|
|
27
|
+
"homepage": "https://gildas-lormeau.github.io/zlib-streams",
|
|
28
|
+
"publishConfig": {
|
|
29
|
+
"access": "public"
|
|
30
|
+
}
|
|
31
|
+
}
|