-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.85 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@vymalo/opencode-browser",
"version": "0.12.0",
"description": "OpenCode plugin that gives the model hands in a real browser: it registers browser_* tools (open, click, type, scroll, screenshot, snapshot, …) and hosts a localhost WebSocket bridge that a companion Chromium/Firefox extension connects to. Tabs are organized into named groups so each task stays isolated and inspectable.",
"license": "MIT",
"author": "vymalo contributors",
"homepage": "https://github.com/ADORSYS-GIS/lightbridge-opencode-toolbeit#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ADORSYS-GIS/lightbridge-opencode-toolbeit.git",
"directory": "packages/opencode-browser"
},
"bugs": {
"url": "https://github.com/ADORSYS-GIS/lightbridge-opencode-toolbeit/issues"
},
"keywords": [
"opencode",
"opencode-plugin",
"browser",
"automation",
"chromium",
"firefox",
"extension",
"cdp",
"ai-sdk"
],
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./lib": {
"types": "./dist/lib.d.ts",
"import": "./dist/lib.js"
},
"./package.json": "./package.json"
},
"sideEffects": false,
"files": [
"dist"
],
"engines": {
"node": ">=22"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"lint": "biome lint .",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run",
"coverage": "vitest run --coverage",
"format": "biome format --write .",
"format:check": "biome format ."
},
"dependencies": {
"@opencode-ai/plugin": "1.15.10",
"ws": "^8.21.0"
},
"devDependencies": {
"@types/ws": "^8.18.0",
"vite": "^8.0.14",
"vitest": "^4.1.7"
}
}