forked from kkoooqq/fakebrowser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.88 KB
/
package.json
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
{
"name": "fakebrowser",
"version": "0.0.66",
"description": "🤖 Fake fingerprints to bypass anti-bot systems. Simulate mouse and keyboard operations to make behavior like a real person.",
"repository": {
"type": "git",
"url": "git+https://github.com/kkoooqq/fakebrowser.git"
},
"author": "kkoooqqq",
"license": "LGPLv3",
"main": "dist/cjs/FakeBrowser.js",
"module": "dist/esm/FakeBrowser.js",
"scripts": {
"clean-dist": "rimraf dist",
"test": "jest --force-exit --detectOpenHandles --config=./jest.config.js",
"build": "npm run tsc",
"tsc": "npm run clean-dist && npm run tsc-cjs && npm run tsc-esm",
"tsc-cjs": "tsc -b src/tsconfig.cjs.json",
"tsc-esm": "tsc -b src/tsconfig.esm.json",
"postbuild": "cpy --cwd=src --parents plugins ../dist"
},
"keywords": [
"bot",
"crawler",
"automation",
"headless",
"puppeteer",
"puppeteer-extra",
"puppeteer-extra-plugin",
"puppeteer-extra-plugin-stealth",
"scrapy",
"spoof",
"cheat",
"fingerprint",
"stealth",
"anti-bot",
"ua",
"user-agent",
"chrome"
],
"engines": {
"node": ">=12.0.0"
},
"bugs": {
"url": "https://github.com/kkoooqq/fakebrowser/issues"
},
"homepage": "https://github.com/kkoooqq/fakebrowser#readme",
"dependencies": {
"font-list": "*",
"fs-extra": "*",
"pidtree": "*",
"puppeteer-extra": "*",
"puppeteer-extra-plugin": "*",
"puppeteer-extra-plugin-user-preferences": "*",
"url-toolkit": "*"
},
"peerDependencies": {
"axios": "*",
"puppeteer": "*"
},
"devDependencies": {
"@types/axios": "*",
"@types/fs-extra": "^9.0.13",
"@types/puppeteer": "*",
"axios": "^0.24.0",
"cpy-cli": "^3.1.1",
"cross-env": "^7.0.3",
"jest": "^27.3.1",
"puppeteer": "^11.0.0",
"rimraf": "^3.0.2",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
}
}