-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.3 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.3 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
{
"name": "veil-browser",
"version": "0.4.1",
"description": "Stealth browser CLI for AI agents — bypass bot detection, persist sessions, local CAPTCHA solving, MCP server",
"keywords": [
"browser",
"automation",
"stealth",
"playwright",
"cli",
"captcha",
"ai-agent",
"mcp"
],
"author": "CUTTLELAB",
"license": "MIT",
"homepage": "https://github.com/cuttlelab/veil",
"repository": {
"type": "git",
"url": "git+https://github.com/cuttlelab/veil.git"
},
"bin": {
"veil": "dist/index.js"
},
"main": "./dist/index.js",
"scripts": {
"build": "tsc",
"dev": "ts-node src/index.ts",
"start": "node dist/index.js",
"test:mcp": "node scripts/test-mcp-server.mjs",
"prepublishOnly": "npm run build"
},
"files": [
"dist/**/*",
"README.md",
"SKILL.md"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"ora": "^8.1.1",
"playwright": "^1.50.0",
"playwright-extra": "^4.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"tesseract.js": "^5.1.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^22.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=18.0.0"
},
"type": "module"
}