@chahuadev/junk-sweeper-app 2.0.1 → 2.0.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 +30 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -37,6 +37,36 @@ junk-sweeper
37
37
 
38
38
  ---
39
39
 
40
+ ## 🐧 Running on Linux / WSL2 (Ubuntu)
41
+
42
+ First install the required system libraries (one-time setup):
43
+
44
+ ```bash
45
+ sudo apt-get update && sudo apt-get install -y \
46
+ libnss3 libatk1.0-0 libatk-bridge2.0-0 libcups2 \
47
+ libdrm2 libxkbcommon0 libxcomposite1 libxdamage1 \
48
+ libxrandr2 libgbm1 libasound2
49
+ ```
50
+
51
+ Then run the AppImage:
52
+
53
+ ```bash
54
+ chmod +x "Junk Sweeper.AppImage"
55
+ DISPLAY=:0 WAYLAND_DISPLAY=wayland-0 \
56
+ ./"Junk Sweeper.AppImage" \
57
+ --appimage-extract-and-run --no-sandbox --disable-gpu
58
+ ```
59
+
60
+ > **WSL2 tip:** Copy to WSL native filesystem first:
61
+ > ```bash
62
+ > cp "/mnt/d/path/to/Junk Sweeper.AppImage" /tmp/JunkSweeper.AppImage
63
+ > chmod +x /tmp/JunkSweeper.AppImage
64
+ > DISPLAY=:0 WAYLAND_DISPLAY=wayland-0 /tmp/JunkSweeper.AppImage \
65
+ > --appimage-extract-and-run --no-sandbox --disable-gpu
66
+ > ```
67
+
68
+ ---
69
+
40
70
  ## 🚀 What It Does
41
71
 
42
72
  While standard linters look for syntax errors, **Chahuadev Junk Sweeper** uses deep AST analysis to understand the *context* and *architecture* of your entire project.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chahuadev/junk-sweeper-app",
3
- "version": "2.0.1",
3
+ "version": "2.0.2",
4
4
  "description": "Chahuadev Junk Sweeper — AST-based dead code & silent bug detector with interactive architecture map",
5
5
  "main": "index.js",
6
6
  "bin": {