@pixzle/node 0.1.5 → 0.1.6

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 (2) hide show
  1. package/README.md +8 -6
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -28,9 +28,6 @@ await pixzle.shuffle({
28
28
  });
29
29
  ```
30
30
 
31
- <details>
32
- <summary>Output:</summary>
33
-
34
31
  ```
35
32
  output
36
33
  └── fragmented
@@ -40,6 +37,9 @@ output
40
37
  └── manifest.json
41
38
  ```
42
39
 
40
+ <details>
41
+ <summary>Output:</summary>
42
+
43
43
  | input 1 | input 2 | input 3 |
44
44
  |:-------:|:---------------:|:---------------:|
45
45
  | ![](../../.docs/input_sample.png) | ![](../../.docs/input_sample_mono.png) | ![](../../.docs/input_sample_blue.png) |
@@ -52,6 +52,8 @@ output
52
52
 
53
53
  </details>
54
54
 
55
+ ----
56
+
55
57
  **Restore**
56
58
 
57
59
  ```ts
@@ -66,9 +68,6 @@ await pixzle.restore({
66
68
  });
67
69
  ```
68
70
 
69
- <details>
70
- <summary>Output:</summary>
71
-
72
71
  ```
73
72
  output
74
73
  └── restored
@@ -77,6 +76,9 @@ output
77
76
  └── img_3.png
78
77
  ```
79
78
 
79
+ <details>
80
+ <summary>Output:</summary>
81
+
80
82
  | input 1 | input 2 | input 3 |
81
83
  |:-------:|:---------------:|:---------------:|
82
84
  | ![](../../.docs/fragmented1/img_1_fragmented.png) | ![](../../.docs/fragmented1/img_2_fragmented.png) | ![](../../.docs/fragmented1/img_3_fragmented.png) |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pixzle/node",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "description": "Node.js implementation of image fragmentation and restoration",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -28,7 +28,7 @@
28
28
  "dependencies": {
29
29
  "@tuki0918/seeded-shuffle": "^1.0.0",
30
30
  "jimp": "^1.6.0",
31
- "@pixzle/core": "0.1.5"
31
+ "@pixzle/core": "0.1.6"
32
32
  },
33
33
  "devDependencies": {
34
34
  "@types/node": "^22.10.2",