@huh-david/bmp-js 0.8.1 → 0.8.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.
Files changed (2) hide show
  1. package/README.md +12 -0
  2. package/package.json +8 -1
package/README.md CHANGED
@@ -28,6 +28,18 @@ This fork is actively maintained and tracks unresolved upstream `shaozilee/bmp-j
28
28
  pnpm add @huh-david/bmp-js
29
29
  ```
30
30
 
31
+ ## Migration
32
+
33
+ Migrating from legacy `bmp-js`/`bmp-ts` is straightforward:
34
+
35
+ ```bash
36
+ pnpm remove bmp-js bmp-ts
37
+ pnpm add @huh-david/bmp-js
38
+ ```
39
+
40
+ - Migration guide: https://huh-david.github.io/bmp-js/migration
41
+ - AI migration prompt: [docs/ai-migration-prompt.md](docs/ai-migration-prompt.md)
42
+
31
43
  ## Usage
32
44
 
33
45
  ### ESM
package/package.json CHANGED
@@ -1,14 +1,21 @@
1
1
  {
2
2
  "name": "@huh-david/bmp-js",
3
- "version": "0.8.1",
3
+ "version": "0.8.2",
4
4
  "description": "A pure TypeScript BMP encoder and decoder for Node.js",
5
5
  "keywords": [
6
+ "bitmap",
6
7
  "bmp",
8
+ "bmp-js",
9
+ "bmpjs",
10
+ "browser",
7
11
  "cjs",
8
12
  "decoder",
9
13
  "encoder",
10
14
  "esm",
11
15
  "image",
16
+ "node",
17
+ "rle",
18
+ "sharp",
12
19
  "typescript"
13
20
  ],
14
21
  "homepage": "https://huh-david.github.io/bmp-js/",