vibe-monitor 1.0.2 → 1.0.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.
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vibe-monitor",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "AI coding assistant status monitor",
5
5
  "main": "main.js",
6
6
  "bin": {
@@ -7,10 +7,10 @@ let ctx = null;
7
7
  const characterImages = {};
8
8
  let imagesLoaded = false;
9
9
 
10
- // Image paths for each character
10
+ // Image paths for each character (relative to this module)
11
11
  const CHARACTER_IMAGES = {
12
- clawd: '../images/clawd-128.png',
13
- kiro: '../images/kiro-128.png'
12
+ clawd: new URL('../assets/characters/clawd-128.png', import.meta.url).href,
13
+ kiro: new URL('../assets/characters/kiro-128.png', import.meta.url).href
14
14
  };
15
15
 
16
16
  // Preload character images
File without changes
File without changes
File without changes