-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.6 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
{
"name": "barebrowse",
"version": "0.14.0",
"description": "Authenticated web browsing for autonomous agents via CDP. URL in, pruned ARIA snapshot out.",
"repository": {
"type": "git",
"url": "git+https://github.com/hamr0/barebrowse.git"
},
"homepage": "https://github.com/hamr0/barebrowse#readme",
"bugs": "https://github.com/hamr0/barebrowse/issues",
"type": "module",
"main": "src/index.js",
"types": "./types/index.d.ts",
"exports": {
".": {
"types": "./types/index.d.ts",
"default": "./src/index.js"
},
"./bareagent": {
"types": "./types/bareagent.d.ts",
"default": "./src/bareagent.js"
}
},
"bin": {
"barebrowse": "./cli.js"
},
"files": [
"src/",
"types/",
"cli.js",
"mcp-server.js",
"barebrowse.context.md",
"README.md",
"CHANGELOG.md",
"NOTICE"
],
"engines": {
"node": ">=22"
},
"scripts": {
"test": "node --test test/unit/*.test.js test/integration/*.test.js",
"test:unit": "node --test test/unit/*.test.js",
"test:integration": "node --test test/integration/*.test.js",
"typecheck": "tsc --noEmit",
"build:types": "tsc",
"prepublishOnly": "npm run build:types"
},
"keywords": [
"browser",
"cdp",
"chromium",
"aria",
"accessibility",
"web-scraping",
"agent",
"mcp",
"headless"
],
"optionalDependencies": {
"wearehere": "1.0.0"
},
"license": "Apache-2.0",
"devDependencies": {
"@types/node": "^25.9.1",
"typescript": "^6.0.3"
},
"dependencies": {
"@mozilla/readability": "^0.6.0",
"ws": "^8.21.0"
}
}