-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 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
52
53
{
"name": "@framers/agentos-ext-browser-automation",
"version": "0.2.0",
"description": "Full browser automation extension for AgentOS \u2014 provides agents with autonomous web navigation, DOM interaction, screenshotting, captcha solving, and proxy rotation via Playwright.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./attach": "./dist/attach.js",
"./attach/daemon": "./dist/attach/daemon/index.js",
"./attach/daemon/daemon-main": "./dist/attach/daemon/daemon-main.js"
},
"license": "Apache-2.0",
"engines": {
"node": ">=22"
},
"files": [
"dist",
"manifest.json"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest run --passWithNoTests",
"test:watch": "vitest watch",
"clean": "rm -rf dist"
},
"peerDependencies": {
"@framers/agentos": "^0.10.11"
},
"dependencies": {
"playwright": "^1.50.0"
},
"optionalDependencies": {
"2captcha-ts": "^1.3.0"
},
"devDependencies": {
"@framers/agentos": "^0.10.11",
"@types/node": "^22.0.0",
"typescript": "^5.0.0",
"vitest": "^1.0.0",
"ws": "^8.18.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/framerslab/agentos-extensions.git",
"directory": "registry/curated/system/browser-automation"
},
"homepage": "https://github.com/framerslab/agentos-extensions/tree/master/registry/curated/system/browser-automation#readme",
"bugs": {
"url": "https://github.com/framerslab/agentos-extensions/issues"
}
}