claude-notification-plugin 1.0.49 → 1.0.52

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.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "claude-notification-plugin",
3
- "version": "1.0.49",
4
- "description": "Claude Code notifications щт task completion: Telegram, Windows toast, sound, and voice",
3
+ "version": "1.0.52",
4
+ "description": "Claude Code task-completion notifications: Telegram, desktop notifications (Windows/macOS/Linux), sound, and voice",
5
5
  "author": {
6
6
  "name": "Viacheslav Makarov",
7
7
  "email": "npmjs@bazilio.ru"
package/bin/uninstall.js CHANGED
@@ -46,8 +46,19 @@ for (const file of [configPath, statePath]) {
46
46
  }
47
47
  }
48
48
 
49
+ // Remove plugin cache (old versions left by Claude Code)
50
+ const pluginCacheDir = path.join(claudeDir, 'plugins', 'cache', 'bazilio-plugins', 'claude-notification-plugin');
51
+ let cacheRemoved = false;
52
+ if (fs.existsSync(pluginCacheDir)) {
53
+ fs.rmSync(pluginCacheDir, { recursive: true, force: true });
54
+ cacheRemoved = true;
55
+ }
56
+
49
57
  console.log('');
50
58
  console.log('Claude Notification Plugin uninstalled.');
51
59
  console.log('Hooks removed from settings.json');
52
60
  console.log('Config files deleted.');
61
+ if (cacheRemoved) {
62
+ console.log('Plugin cache cleaned.');
63
+ }
53
64
  console.log('');
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "claude-notification-plugin",
3
3
  "productName": "claude-notification-plugin",
4
- "version": "1.0.49",
5
- "description": "Cross-platform Claude Code notifications on task completion: Telegram, desktop (Windows/macOS/Linux), sound, and voice",
4
+ "version": "1.0.52",
5
+ "description": "Claude Code task-completion notifications: Telegram, desktop notifications (Windows/macOS/Linux), sound, and voice",
6
6
  "type": "module",
7
7
  "engines": {
8
8
  "node": ">=18.0.0"