zstdify-cli 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.
- package/README.md +7 -0
- package/logo.webp +0 -0
- package/package.json +2 -2
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
|
+

|
|
9
|
+
|
|
8
10
|
Command-line tool for compressing and decompressing files with zstd. Built on the [zstdify](https://www.npmjs.com/package/zstdify) package (pure TypeScript, no native dependencies).
|
|
9
11
|
|
|
10
12
|
## Features
|
|
@@ -80,6 +82,11 @@ CLI behavior is covered by automated tests (`pnpm vitest`, including `packages/c
|
|
|
80
82
|
- Coverage includes both zstd-trained and zstdify-trained dictionaries.
|
|
81
83
|
- **Error paths**: Missing files and invalid inputs produce non-zero exits and actionable messages.
|
|
82
84
|
|
|
85
|
+
## Acknowledgements
|
|
86
|
+
|
|
87
|
+
This project is made possible by the original [zstd](https://github.com/facebook/zstd) project by Meta and its contributors.
|
|
88
|
+
The monorepo, project, and CLI structure were bootstrapped from [hdrify](https://github.com/bhouston/hdrify), which made this project much easier to build.
|
|
89
|
+
|
|
83
90
|
# License
|
|
84
91
|
|
|
85
92
|
MIT
|
package/logo.webp
ADDED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zstdify-cli",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "CLI for zstd compression and decompression using zstdify",
|
|
6
6
|
"license": "MIT",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"yargs": "^17.7.2",
|
|
19
19
|
"yargs-file-commands": "^1.2.2",
|
|
20
|
-
"zstdify": "^1.1.
|
|
20
|
+
"zstdify": "^1.1.1"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
|
23
23
|
"@types/node": "^24",
|