@pz4l/tinyimg-core 0.1.0-beta.0 → 0.1.1-beta.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.
Files changed (2) hide show
  1. package/README.md +15 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -17,6 +17,21 @@ Core library for TinyPNG image compression with intelligent caching and multi-AP
17
17
  npm install @pz4l/tinyimg-core
18
18
  ```
19
19
 
20
+ ### Testing Installation
21
+
22
+ To verify the package installs correctly:
23
+
24
+ ```bash
25
+ # Test in a clean directory
26
+ cd /tmp
27
+ mkdir test-tinyimg && cd test-tinyimg
28
+ pnpm init
29
+ pnpm add @pz4l/tinyimg-core@latest
30
+
31
+ # Verify installation
32
+ pnpm list @pz4l/tinyimg-core
33
+ ```
34
+
20
35
  ## Cache System
21
36
 
22
37
  ### Overview
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@pz4l/tinyimg-core",
3
3
  "type": "module",
4
- "version": "0.1.0-beta.0",
4
+ "version": "0.1.1-beta.1",
5
5
  "description": "Core library for TinyPNG image compression with multi-key management, intelligent caching, and fallback strategies",
6
6
  "author": "pzehrel",
7
7
  "license": "MIT",