safari-pilot 0.1.3 → 0.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/SafariPilotd CHANGED
Binary file
@@ -273,7 +273,7 @@
273
273
  browser.runtime.onMessage.addListener((message, sender, sendResponse) => {
274
274
  // Health check
275
275
  if (message && message.type === 'ping') {
276
- sendResponse({ ok: true, type: 'pong', extensionVersion: '0.1.3' });
276
+ sendResponse({ ok: true, type: 'pong', extensionVersion: '0.1.4' });
277
277
  return false;
278
278
  }
279
279
 
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "manifest_version": 3,
3
3
  "name": "Safari Pilot",
4
- "version": "0.1.3",
4
+ "version": "0.1.4",
5
5
  "description": "Native Safari automation for AI agents",
6
6
  "permissions": [
7
7
  "activeTab",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "safari-pilot",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Native Safari browser automation for AI agents on macOS",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",