@pixzle/browser 0.0.22 → 0.0.24

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 +1 -1
  2. package/package.json +12 -3
package/README.md CHANGED
@@ -16,7 +16,7 @@ import { BrowserImageRestorer } from '@pixzle/browser';
16
16
  const restorer = new BrowserImageRestorer();
17
17
 
18
18
  const restoredBitmap = await restorer.restoreImage(
19
- 'path/to/shuffled.png', // or URL, Blob, HTMLImageElement, ImageBitmap
19
+ 'path/to/fragmented/image.png', // or URL, Blob, HTMLImageElement, ImageBitmap
20
20
  8, // blockSize
21
21
  72411, // seed
22
22
  { w: 500, h: 500 } // imageInfo
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pixzle/browser",
3
- "version": "0.0.22",
3
+ "version": "0.0.24",
4
4
  "description": "Browser implementation of image fragmentation and restoration",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -14,7 +14,16 @@
14
14
  "files": [
15
15
  "dist"
16
16
  ],
17
- "keywords": [],
17
+ "keywords": [
18
+ "pixzle",
19
+ "image",
20
+ "fragmentation",
21
+ "restoration",
22
+ "shuffle",
23
+ "obfuscation",
24
+ "browser",
25
+ "web"
26
+ ],
18
27
  "author": "tuki0918",
19
28
  "repository": {
20
29
  "type": "git",
@@ -27,7 +36,7 @@
27
36
  },
28
37
  "dependencies": {
29
38
  "@tuki0918/seeded-shuffle": "^1.0.0",
30
- "@pixzle/core": "0.0.22"
39
+ "@pixzle/core": "0.0.24"
31
40
  },
32
41
  "devDependencies": {
33
42
  "happy-dom": "^20.0.11",