roxify 1.2.1 → 1.2.2
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/LICENSE +6 -6
- package/package.json +7 -2
package/LICENSE
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2025
|
|
3
|
+
Copyright (c) 2025 Yohan SANNIER
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
6
|
+
of this software and associated documentation files (the "Software"), to use,
|
|
7
|
+
modify, merge, publish, distribute, sublicense, and/or sell tools or applications
|
|
8
|
+
that make use of the Software, provided that the Software itself is not copied,
|
|
9
|
+
rebranded, or redistributed as a standalone package under a different name or
|
|
10
|
+
ownership.
|
|
11
11
|
|
|
12
12
|
The above copyright notice and this permission notice shall be included in all
|
|
13
13
|
copies or substantial portions of the Software.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "roxify",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.2",
|
|
4
4
|
"description": "Encode binary data into PNG images with Zstd compression and decode them back. Supports CLI and programmatic API (Node.js ESM).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -45,7 +45,6 @@
|
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
47
|
"@mongodb-js/zstd": "^2.0.1",
|
|
48
|
-
"zopflipng-bin": "^1.0.1",
|
|
49
48
|
"fflate": "^0.7.4",
|
|
50
49
|
"lzma-purejs": "^0.9.3",
|
|
51
50
|
"png-chunks-encode": "^1.0.0",
|
|
@@ -53,6 +52,12 @@
|
|
|
53
52
|
"sharp": "^0.34.5",
|
|
54
53
|
"cli-progress": "^3.9.1"
|
|
55
54
|
},
|
|
55
|
+
"optionalDependencies": {
|
|
56
|
+
"zopflipng-bin": "^1.0.1"
|
|
57
|
+
},
|
|
58
|
+
"overrides": {
|
|
59
|
+
"graceful-fs": "^4.2.10"
|
|
60
|
+
},
|
|
56
61
|
"devDependencies": {
|
|
57
62
|
"typescript": "^4.9.5",
|
|
58
63
|
"@types/cli-progress": "^3.9.0"
|