@ui-entropy/scanner-core 0.1.2 → 0.1.3

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 +3 -9
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -28,6 +28,8 @@ npm install @ui-entropy/scanner-core
28
28
 
29
29
  **For CLI usage**, install the main package instead:
30
30
  ```bash
31
+ npm install -g @ui-entropy/cli
32
+ ```
31
33
  npm install -g ui-entropy
32
34
  ```
33
35
 
@@ -97,15 +99,7 @@ Find all class/ID usage across source files.
97
99
 
98
100
  Calculate waste metrics and identify unused selectors.
99
101
 
100
- ## 📈 Real-World Results
101
-
102
- | Project | CSS Size | Waste % | Unused Selectors |
103
- |---------|----------|---------|------------------|
104
- | build-and-bloom | 45 KB | 72% | 129 selectors |
105
- | Portfolio Site | 180 KB | 91% | 1,024 selectors |
106
- | React Dashboard | 89 KB | 38% | 412 selectors |
107
-
108
- ## 🔗 Related Packages
102
+ ## Related Packages
109
103
 
110
104
  - **[ui-entropy](https://npmjs.com/package/ui-entropy)** - CLI tool for terminal usage
111
105
  - **UI Entropy Dashboard** _(coming soon)_ - Team analytics and historical tracking
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ui-entropy/scanner-core",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "type": "module",
5
5
  "description": "CSS waste detection engine - finds unused classes and IDs in your codebase",
6
6
  "main": "./dist/index.js",