-
Notifications
You must be signed in to change notification settings - Fork 5.6k
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 3.39 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 3.39 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@elizaos/plugin-browser",
"version": "2.0.3-beta.7",
"type": "module",
"description": "Browser plugin: BROWSER action and MANAGE_BROWSER_BRIDGE management action. Owns the workspace browser (electrobun-embedded + jsdom fallback) and the Chrome/Safari companion bridge. Targets are registered with the BrowserService; the agent uses what is available.",
"main": "./dist/index.js",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"eliza-source": {
"types": "./src/index.ts",
"import": "./src/index.ts",
"default": "./src/index.ts"
},
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./*.css": "./dist/*.css",
"./*": {
"types": "./dist/*.d.ts",
"eliza-source": {
"types": "./src/*.ts",
"import": "./src/*.ts",
"default": "./src/*.ts"
},
"import": "./dist/*.js",
"default": "./dist/*.js"
}
},
"scripts": {
"typecheck": "tsgo --noEmit -p tsconfig.json",
"lint": "bunx @biomejs/biome check --write --unsafe .",
"lint:check": "bunx @biomejs/biome check .",
"format": "bunx @biomejs/biome format --write .",
"format:check": "bunx @biomejs/biome format .",
"test": "vitest run",
"test:real-chromium": "bun run test:real:external && bun run test:real:miniwob && bun run test:real:grounding",
"test:real:chromium": "bun run test:real:external && bun run test:real:miniwob && bun run test:real:grounding",
"test:real:miniwob": "vitest run --config vitest.real.config.ts src/benchmark/__tests__/miniwob-chromium.real.test.ts",
"test:real:grounding": "vitest run --config vitest.real.config.ts src/benchmark/__tests__/web-grounding-chromium.real.test.ts",
"test:real:external": "vitest run --config vitest.real.config.ts src/benchmark/__tests__/external-dataset-chromium.real.test.ts",
"bench:miniwob": "bun scripts/run-miniwob-benchmark.mjs",
"bench:miniwob:chromium": "bun scripts/run-miniwob-chromium-benchmark.mjs",
"bench:miniwob:chromium:capture": "bun scripts/capture-miniwob-chromium-evidence.mjs",
"bench:miniwob:chromium:record": "bun scripts/capture-miniwob-chromium-recording.mjs",
"bench:grounding:chromium": "bun scripts/capture-web-grounding-evidence.mjs",
"bench:external": "bun scripts/run-external-dataset-benchmark.mjs",
"bench:external:chromium": "bun scripts/run-external-dataset-chromium-benchmark.mjs",
"build": "bun run build:js && bun run build:types",
"clean": "node ../../packages/scripts/rm-path-recursive.mjs dist",
"build:js": "tsup --config ../tsup.plugin-packages.shared.ts",
"build:types": "tsc --noCheck -p tsconfig.build.json"
},
"dependencies": {
"@elizaos/core": "workspace:*",
"@elizaos/vault": "workspace:*",
"drizzle-orm": "0.45.2"
},
"devDependencies": {
"bun-types": "^1.3.12",
"jsdom": "^29.0.0",
"puppeteer-core": "^24.37.5",
"tsup": "^8.5.1",
"typescript": "^6.0.3",
"vitest": "^4.0.17"
},
"agentConfig": {
"pluginType": "elizaos:plugin:1.0.0",
"pluginParameters": {}
},
"elizaos": {
"plugin": {
"autoEnableModule": "./auto-enable.ts",
"capabilities": [
"browser-automation"
]
}
},
"publishConfig": {
"access": "public"
},
"types": "./dist/index.d.ts",
"files": [
"registry-entry.json",
"dist",
"auto-enable.ts"
]
}