-
-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "@webbrain/lmstudio-web-tools",
"displayName": "WebBrain Web Tools",
"description": "Web tools for LM Studio. fetch_url (raw HTTP, content-type aware) and research_url (readable article body) work with pure Node and no dependencies. With the WebBrain extension installed on a Chromium browser (Chrome, Edge, Brave), browser_task additionally delegates goals to your real, already-signed-in browser session — pages behind a login or rendered client-side that plain HTTP cannot reach. Firefox is not supported for browser_task: that build has no offscreen document, so it cannot host the bridge.",
"version": "0.2.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"homepage": "https://webbrain.one",
"repository": {
"type": "git",
"url": "https://github.com/webbrain-one/webbrain.git",
"directory": "lmstudio-plugin"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "npm run build && node --test test/browserTask.test.mjs",
"clean": "rm -rf dist"
},
"keywords": [
"lmstudio",
"lmstudio-plugin",
"tools-provider",
"web",
"fetch",
"research",
"browser-tools",
"browser-agent",
"browser-automation",
"webbrain"
],
"dependencies": {
"@lmstudio/sdk": "^1.0.0",
"ws": "^8.18.0",
"zod": "^3.23.0"
},
"devDependencies": {
"typescript": "^5.5.0",
"@types/node": "^20.11.0",
"@types/ws": "^8.5.10"
},
"files": [
"dist",
"manifest.json",
"README.md"
],
"engines": {
"node": ">=20.0.0"
}
}