-
Notifications
You must be signed in to change notification settings - Fork 829
Expand file tree
/
Copy pathpackage.json
More file actions
150 lines (150 loc) · 4.06 KB
/
Copy pathpackage.json
File metadata and controls
150 lines (150 loc) · 4.06 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
{
"name": "@askjo/camofox-browser",
"version": "1.13.0",
"description": "Headless browser automation server and OpenClaw plugin for AI agents - anti-detection, element refs, and session isolation",
"type": "module",
"main": "server.js",
"license": "MIT",
"author": "Jo Inc <oss@askjo.ai>",
"homepage": "https://github.com/jo-inc/camofox-browser#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/jo-inc/camofox-browser.git"
},
"bugs": {
"url": "https://github.com/jo-inc/camofox-browser/issues"
},
"keywords": [
"browser",
"automation",
"headless",
"scraping",
"camofox",
"camoufox",
"anti-detection",
"ai-agent",
"openclaw",
"clawdbot",
"moltbot",
"playwright",
"firefox",
"youtube",
"transcript"
],
"engines": {
"node": ">=22"
},
"files": [
"server.js",
"lib/",
"plugins/",
"camofox.config.json",
"plugin.ts",
"plugin.js",
"dist/plugin.js",
"tsconfig.json",
"openclaw.plugin.json",
"bin/",
"scripts/",
"run.sh",
"Dockerfile",
"README.md",
"LICENSE",
"AGENTS.md",
"!**/*.test.js",
"!**/*.test.ts",
"!**/*.spec.js"
],
"openclaw": {
"extensions": [
"plugin.ts"
],
"runtimeExtensions": [
"plugin.js"
],
"compat": {
"pluginApi": ">=2026.3.24-beta.2"
},
"build": {
"openclawVersion": "2026.5.3"
},
"tools": [
{
"name": "camofox_create_tab",
"description": "Open a new browser tab at a URL"
},
{
"name": "camofox_snapshot",
"description": "Get accessibility snapshot with element refs"
},
{
"name": "camofox_click",
"description": "Click an element by ref or CSS selector"
},
{
"name": "camofox_type",
"description": "Type text into an element"
},
{
"name": "camofox_navigate",
"description": "Navigate to URL or search macro"
},
{
"name": "camofox_scroll",
"description": "Scroll page up/down/left/right"
},
{
"name": "camofox_screenshot",
"description": "Capture page screenshot"
},
{
"name": "camofox_close_tab",
"description": "Close a browser tab"
},
{
"name": "camofox_evaluate",
"description": "Execute JavaScript in a Camoufox tab page context"
},
{
"name": "camofox_list_tabs",
"description": "List open tabs for a user"
},
{
"name": "camofox_import_cookies",
"description": "Import Netscape cookie file (requires CAMOFOX_API_KEY)"
}
]
},
"scripts": {
"build": "tsc -p . || true; mkdir -p dist && cp plugin.js dist/plugin.js",
"prepublishOnly": "npm run build",
"start": "node server.js",
"test": "NODE_OPTIONS='--experimental-vm-modules' jest --runInBand --forceExit",
"test:e2e": "NODE_OPTIONS='--experimental-vm-modules' jest --config jest.config.e2e.cjs --runInBand --forceExit",
"test:plugins": "NODE_OPTIONS='--experimental-vm-modules' jest --forceExit plugins/",
"test:live": "RUN_LIVE_TESTS=1 NODE_OPTIONS='--experimental-vm-modules' jest --runInBand --forceExit tests/live",
"test:debug": "DEBUG_SERVER=1 NODE_OPTIONS='--experimental-vm-modules' jest --runInBand --forceExit",
"plugin": "node scripts/plugin.js",
"generate-openapi": "node scripts/generate-openapi.js",
"version:sync": "node scripts/sync-version.js",
"version": "node scripts/sync-version.js && node scripts/generate-openapi.js && git add openclaw.plugin.json openapi.json",
"postinstall": "node scripts/postinstall.js",
"fetch-bin": "npx camoufox-js fetch"
},
"dependencies": {
"camoufox-js": "0.10.2",
"express": "^4.18.2",
"playwright-core": "^1.58.0",
"prom-client": "^15.1.3",
"swagger-jsdoc": "^6.2.8"
},
"devDependencies": {
"@types/node": "^22.0.0",
"jest": "^29.7.0",
"pngjs": "^7.0.0",
"typescript": "^5.7.0"
},
"bin": {
"camofox-browser": "./bin/camofox-browser.js"
}
}