@quanta-intellect/vessel-browser 0.1.148 → 0.1.153

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.
@@ -5,7 +5,7 @@
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
6
  <meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'none'; object-src 'none'; frame-src 'none'; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' data:; connect-src 'self'; font-src 'self' data:; form-action 'self';" />
7
7
  <title>Vessel</title>
8
- <script type="module" crossorigin src="./assets/index-DO3Y7T4m.js"></script>
8
+ <script type="module" crossorigin src="./assets/index-DRjJWtwA.js"></script>
9
9
  <link rel="stylesheet" crossorigin href="./assets/index-C8XANwcP.css">
10
10
  </head>
11
11
  <body>
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.148",
4
+ "version": "0.1.153",
5
5
  "description": "AI-native web browser runtime for autonomous agents with human supervision",
6
6
  "main": "./out/main/index.js",
7
7
  "bin": {
@@ -49,7 +49,8 @@
49
49
  "test:navigation-regression": "env -u ELECTRON_RUN_AS_NODE ELECTRON_DISABLE_SANDBOX=1 electron --no-sandbox --disable-setuid-sandbox scripts/run-navigation-regression.mjs",
50
50
  "test:mcp-proxy": "node scripts/test-mcp-stdio-proxy.mjs",
51
51
  "smoke:test": "node scripts/smoke-test.mjs",
52
- "test:coverage": "NODE_OPTIONS=\"--require ./tests/mocks/register.cjs --import ./tests/mocks/esm-register.mjs\" c8 --reporter=text --reporter=html tsx --test tests/*.test.ts"
52
+ "test:coverage": "NODE_OPTIONS=\"--require ./tests/mocks/register.cjs --import ./tests/mocks/esm-register.mjs\" c8 --reporter=text --reporter=html tsx --test tests/*.test.ts",
53
+ "prepare": "husky"
53
54
  },
54
55
  "keywords": [
55
56
  "agent-browser",
@@ -73,7 +74,7 @@
73
74
  "url": "https://github.com/unmodeled-tyler/vessel-browser.git"
74
75
  },
75
76
  "engines": {
76
- "node": ">=22.12.0",
77
+ "node": ">=22.22.1",
77
78
  "npm": ">=11.0.0"
78
79
  },
79
80
  "packageManager": "npm@11.16.0",
@@ -82,14 +83,16 @@
82
83
  },
83
84
  "devDependencies": {
84
85
  "@eslint/js": "^9.39.4",
85
- "@types/node": "^25.9.1",
86
+ "@types/node": "^22.10.0",
86
87
  "c8": "^11.0.0",
87
88
  "electron": "^42.3.0",
88
89
  "electron-builder": "^26.8.1",
89
90
  "electron-vite": "^5.0.0",
90
91
  "eslint": "^9.39.4",
91
92
  "eslint-config-prettier": "^10.1.8",
93
+ "husky": "^9.1.7",
92
94
  "knip": "^6.14.2",
95
+ "lint-staged": "^17.0.8",
93
96
  "lucide-solid": "^1.17.0",
94
97
  "prettier": "^3.8.3",
95
98
  "solid-js": "^1.9.13",
@@ -99,18 +102,22 @@
99
102
  "vite-plugin-solid": "^2.11.12"
100
103
  },
101
104
  "dependencies": {
102
- "@anthropic-ai/sdk": "^0.100.0",
105
+ "@anthropic-ai/sdk": "^0.105.0",
103
106
  "@modelcontextprotocol/sdk": "^1.29.0",
104
107
  "@mozilla/readability": "^0.6.0",
105
- "dompurify": "^3.4.7",
108
+ "dompurify": "^3.4.11",
106
109
  "linkedom": "^0.18.12",
107
- "openai": "^6.39.1",
110
+ "openai": "^6.44.0",
108
111
  "zod": "^4.4.3"
109
112
  },
110
113
  "allowScripts": {
111
114
  "electron-winstaller@5.4.0": true,
112
115
  "esbuild@0.25.12": true,
113
- "esbuild@0.28.0": true,
114
- "esbuild@0.27.7": true
116
+ "esbuild@0.27.7": true,
117
+ "esbuild@0.28.1": true
118
+ },
119
+ "lint-staged": {
120
+ "*.{ts,tsx}": "eslint --config eslint.config.mjs --fix",
121
+ "*.{ts,tsx,mjs,json}": "prettier --write"
115
122
  }
116
123
  }