-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 1.88 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
{
"name": "@dreamor/cloakbrowser-cli",
"version": "0.4.1",
"description": "Agent-friendly CLI for CloakBrowser — stealth Chromium that passes bot detection. Covers all CloakBrowser features for use by AI agents.",
"type": "module",
"bin": {
"cloak": "./bin/cloak.js"
},
"main": "./dist/cli.js",
"files": [
"dist",
"bin",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/dreamor/cloakbrowser-cli.git"
},
"homepage": "https://github.com/dreamor/cloakbrowser-cli#readme",
"bugs": {
"url": "https://github.com/dreamor/cloakbrowser-cli/issues"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "tsx src/cli.ts",
"watch": "tsc -p tsconfig.json --watch",
"test": "vitest run tests/unit",
"test:e2e": "vitest run tests/e2e",
"test:all": "vitest run",
"typecheck": "tsc -p tsconfig.json --noEmit",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build"
},
"keywords": [
"cloakbrowser",
"stealth",
"playwright",
"chromium",
"bot-detection",
"fingerprint",
"agent",
"cli",
"scraping"
],
"author": "dreamor",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@mozilla/readability": "^0.5.0",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"jsdom": "^25.0.0",
"turndown": "^7.2.0"
},
"peerDependencies": {
"cloakbrowser": ">=0.3.0",
"playwright-core": ">=1.40.0"
},
"peerDependenciesMeta": {
"cloakbrowser": {
"optional": false
},
"playwright-core": {
"optional": false
}
},
"devDependencies": {
"@types/jsdom": "^21.1.7",
"@types/node": "^22.0.0",
"@types/turndown": "^5.0.5",
"cloakbrowser": ">=0.3.0",
"playwright-core": ">=1.40.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"vitest": "^2.1.0"
}
}