@quanta-intellect/vessel-browser 0.1.21 → 0.1.24

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/README.md CHANGED
@@ -1,6 +1,11 @@
1
- ![vessel-logo-cropped](https://github.com/user-attachments/assets/58887932-26b3-45b5-be5e-21de562d2855)
2
-
1
+ <div align="center">
2
+
3
+ ![quanta-intellect-logo-transparent](https://cdn-uploads.huggingface.co/production/uploads/686c460ba3fc457ad14ab6f8/gB6J60f9Yeyb3Thop2dUa.png)
3
4
  # Vessel: Your Agent's Browser
5
+ </div>
6
+
7
+
8
+
4
9
 
5
10
  Open-source browser runtime for persistent web agents on Linux.
6
11
 
package/out/main/index.js CHANGED
@@ -19964,6 +19964,21 @@ function rendererUrlFor(view) {
19964
19964
  url.searchParams.set("view", view);
19965
19965
  return url.toString();
19966
19966
  }
19967
+ function resolveRendererFile() {
19968
+ const candidates = [
19969
+ path$1.join(__dirname, "../renderer/index.html"),
19970
+ path$1.join(__dirname, "../../out/renderer/index.html"),
19971
+ path$1.join(electron.app.getAppPath(), "out/renderer/index.html"),
19972
+ path$1.join(electron.app.getAppPath(), "renderer/index.html")
19973
+ ];
19974
+ const match = candidates.find((candidate) => fs$1.existsSync(candidate));
19975
+ if (!match) {
19976
+ throw new Error(
19977
+ `Could not locate renderer/index.html. Tried: ${candidates.join(", ")}`
19978
+ );
19979
+ }
19980
+ return match;
19981
+ }
19967
19982
  function loadRenderers(chromeView, sidebarView, devtoolsPanelView) {
19968
19983
  const chromeUrl = rendererUrlFor("chrome");
19969
19984
  const sidebarUrl = rendererUrlFor("sidebar");
@@ -19973,7 +19988,7 @@ function loadRenderers(chromeView, sidebarView, devtoolsPanelView) {
19973
19988
  sidebarView.webContents.loadURL(sidebarUrl);
19974
19989
  devtoolsPanelView.webContents.loadURL(devtoolsUrl);
19975
19990
  } else {
19976
- const rendererFile = path$1.join(__dirname, "../../renderer/index.html");
19991
+ const rendererFile = resolveRendererFile();
19977
19992
  chromeView.webContents.loadFile(rendererFile, {
19978
19993
  query: { view: "chrome" }
19979
19994
  });
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@quanta-intellect/vessel-browser",
3
3
  "mcpName": "io.github.unmodeled-tyler/vessel-browser",
4
- "version": "0.1.21",
4
+ "version": "0.1.24",
5
5
  "description": "AI-native web browser for Linux — persistent browser runtime for autonomous agents with human supervision",
6
6
  "main": "./out/main/index.js",
7
7
  "bin": {
@@ -39,7 +39,7 @@
39
39
  "solidjs",
40
40
  "vessel"
41
41
  ],
42
- "author": "Quanta Intellect",
42
+ "author": "Quanta Intellect <hello@quantaintellect.com>",
43
43
  "license": "MIT",
44
44
  "publishConfig": {
45
45
  "access": "public"