@quanta-intellect/vessel-browser 0.1.6
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/LICENSE +21 -0
- package/README.md +377 -0
- package/bin/vessel-browser.js +25 -0
- package/out/main/index.js +13004 -0
- package/out/preload/content-script.js +2836 -0
- package/out/preload/index.js +172 -0
- package/out/renderer/assets/index-BYA528aQ.js +4883 -0
- package/out/renderer/assets/index-Bz1EMkt-.css +3354 -0
- package/out/renderer/assets/vessel-logo-transparent-IT25qr-Z.png +0 -0
- package/out/renderer/index.html +13 -0
- package/package.json +72 -0
- package/resources/vessel-icon.png +0 -0
|
Binary file
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
|
+
<title>Vessel</title>
|
|
7
|
+
<script type="module" crossorigin src="./assets/index-BYA528aQ.js"></script>
|
|
8
|
+
<link rel="stylesheet" crossorigin href="./assets/index-Bz1EMkt-.css">
|
|
9
|
+
</head>
|
|
10
|
+
<body>
|
|
11
|
+
<div id="root"></div>
|
|
12
|
+
</body>
|
|
13
|
+
</html>
|
package/package.json
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@quanta-intellect/vessel-browser",
|
|
3
|
+
"version": "0.1.6",
|
|
4
|
+
"description": "AI-native web browser for Linux — persistent browser runtime for autonomous agents with human supervision",
|
|
5
|
+
"main": "./out/main/index.js",
|
|
6
|
+
"bin": {
|
|
7
|
+
"vessel-browser": "./bin/vessel-browser.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"out/**/*",
|
|
11
|
+
"bin/**/*",
|
|
12
|
+
"resources/vessel-icon.png",
|
|
13
|
+
"package.json",
|
|
14
|
+
"LICENSE",
|
|
15
|
+
"README.md"
|
|
16
|
+
],
|
|
17
|
+
"scripts": {
|
|
18
|
+
"dev": "electron-vite dev",
|
|
19
|
+
"build": "electron-vite build",
|
|
20
|
+
"dist": "npm run build && electron-builder --linux --publish never",
|
|
21
|
+
"dist:dir": "npm run build && electron-builder --linux dir --publish never",
|
|
22
|
+
"preview": "electron-vite preview",
|
|
23
|
+
"typecheck": "tsc --noEmit",
|
|
24
|
+
"prepublishOnly": "npm run build",
|
|
25
|
+
"test:navigation-regression": "electron --no-sandbox --disable-setuid-sandbox scripts/run-navigation-regression.mjs",
|
|
26
|
+
"smoke:test": "node scripts/smoke-test.mjs"
|
|
27
|
+
},
|
|
28
|
+
"keywords": [
|
|
29
|
+
"agent-browser",
|
|
30
|
+
"ai-agent",
|
|
31
|
+
"browser-automation",
|
|
32
|
+
"electron",
|
|
33
|
+
"human-in-the-loop",
|
|
34
|
+
"linux",
|
|
35
|
+
"mcp",
|
|
36
|
+
"model-context-protocol",
|
|
37
|
+
"solidjs",
|
|
38
|
+
"vessel"
|
|
39
|
+
],
|
|
40
|
+
"author": "Quanta Intellect",
|
|
41
|
+
"license": "MIT",
|
|
42
|
+
"publishConfig": {
|
|
43
|
+
"access": "public"
|
|
44
|
+
},
|
|
45
|
+
"repository": {
|
|
46
|
+
"type": "git",
|
|
47
|
+
"url": "https://github.com/unmodeled-tyler/quanta-vessel-browser.git"
|
|
48
|
+
},
|
|
49
|
+
"peerDependencies": {
|
|
50
|
+
"electron": ">=30.0.0"
|
|
51
|
+
},
|
|
52
|
+
"devDependencies": {
|
|
53
|
+
"@types/dompurify": "^3.0.5",
|
|
54
|
+
"@types/node": "^25.3.5",
|
|
55
|
+
"electron": "^40.8.0",
|
|
56
|
+
"electron-builder": "^26.8.1",
|
|
57
|
+
"electron-vite": "^5.0.0",
|
|
58
|
+
"solid-js": "^1.9.11",
|
|
59
|
+
"tsx": "^4.21.0",
|
|
60
|
+
"typescript": "^5.9.3",
|
|
61
|
+
"vite-plugin-solid": "^2.11.10"
|
|
62
|
+
},
|
|
63
|
+
"dependencies": {
|
|
64
|
+
"@anthropic-ai/sdk": "^0.78.0",
|
|
65
|
+
"@modelcontextprotocol/sdk": "^1.27.1",
|
|
66
|
+
"@mozilla/readability": "^0.6.0",
|
|
67
|
+
"dompurify": "^3.3.2",
|
|
68
|
+
"linkedom": "^0.18.12",
|
|
69
|
+
"openai": "^6.27.0",
|
|
70
|
+
"zod": "^4.3.6"
|
|
71
|
+
}
|
|
72
|
+
}
|
|
Binary file
|