claude-notification-plugin 1.1.2 → 1.1.4

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
+ de93efdd9c0a0aa72fdedb23302e244436529929
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.4",
5
5
  "description": "Claude Code task-completion notifications: Telegram, desktop notifications (Windows/macOS/Linux), sound, and voice",
6
6
  "type": "module",
7
7
  "engines": {