claude-code-marketplace 0.5.3 → 0.5.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/public/app.js +4 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-code-marketplace",
3
- "version": "0.5.3",
3
+ "version": "0.5.4",
4
4
  "description": "Web UI for browsing and managing Claude Code marketplace plugins",
5
5
  "main": "server.js",
6
6
  "bin": {
package/public/app.js CHANGED
@@ -1369,6 +1369,10 @@ if ('serviceWorker' in navigator) {
1369
1369
  e.preventDefault();
1370
1370
  window.parent?.postMessage({ type: 'hub:keydown', key: e.key }, '*');
1371
1371
  }
1372
+ if (e.altKey && !e.ctrlKey && !e.shiftKey && !e.metaKey && /^[1-9]$/.test(e.key)) {
1373
+ e.preventDefault();
1374
+ window.parent?.postMessage({ type: 'hub:keydown', key: e.key }, '*');
1375
+ }
1372
1376
  });
1373
1377
  })();
1374
1378