zstdify 1.1.0 → 1.1.1

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.
Files changed (3) hide show
  1. package/README.md +7 -0
  2. package/logo.webp +0 -0
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -5,6 +5,8 @@
5
5
  [![Tests][tests-badge]][tests-url]
6
6
  [![Coverage][coverage-badge]][coverage-url]
7
7
 
8
+ ![Zstdify Logo](/logo.webp)
9
+
8
10
  Pure JavaScript/TypeScript zstd compression/decompression library. No native dependencies, works in Node.js and browsers.
9
11
 
10
12
  ## Features
@@ -118,6 +120,11 @@ pnpm make-release:cli
118
120
  - `packages/cli` - CLI tool (`zstdify-cli` on npm)
119
121
  - `packages/cli-tests` - Tests of the CLI tool
120
122
 
123
+ ## Acknowledgements
124
+
125
+ This project is made possible by the original [zstd](https://github.com/facebook/zstd) project by Meta and its contributors.
126
+ The monorepo, project, and CLI structure were bootstrapped from [hdrify](https://github.com/bhouston/hdrify), which made this project much easier to build.
127
+
121
128
  # License
122
129
 
123
130
  MIT
package/logo.webp ADDED
Binary file
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "zstdify",
3
3
  "description": "Pure TypeScript zstd compression library",
4
- "version": "1.1.0",
4
+ "version": "1.1.1",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",