claude-notification-plugin 1.1.2 → 1.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.
package/bin/uninstall.js CHANGED
@@ -318,6 +318,12 @@ try {
318
318
  if (marketplaces[MARKETPLACE_KEY]) {
319
319
  delete marketplaces[MARKETPLACE_KEY];
320
320
  fs.writeFileSync(knownMarketplacesPath, JSON.stringify(marketplaces, null, 2));
321
+ console.log(`Removed marketplace "${MARKETPLACE_KEY}" from known_marketplaces.json`);
322
+ }
323
+ const marketplaceDir = path.join(claudeDir, 'plugins', 'marketplaces', MARKETPLACE_KEY);
324
+ if (fs.existsSync(marketplaceDir)) {
325
+ fs.rmSync(marketplaceDir, { recursive: true, force: true });
326
+ console.log(`Removed marketplace directory: ${marketplaceDir}`);
321
327
  }
322
328
  }
323
329
  }
package/commit-sha CHANGED
@@ -1 +1 @@
1
- cd565955fd15c1bfe67493baa384bc67f90f9889
1
+ f8bfdfe50359db71f6444a7a117b4e3693b51cda
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "claude-notification-plugin",
3
3
  "productName": "claude-notification-plugin",
4
- "version": "1.1.2",
4
+ "version": "1.1.3",
5
5
  "description": "Claude Code task-completion notifications: Telegram, desktop notifications (Windows/macOS/Linux), sound, and voice",
6
6
  "type": "module",
7
7
  "engines": {