-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.17 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.17 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
{
"name": "browser-with-fingerprints",
"description": "A plugin that improves the stealth of automation libraries using fingerprints",
"homepage": "https://github.com/bablosoft/browser-with-fingerprints#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/bablosoft/browser-with-fingerprints.git"
},
"author": "bablosoft",
"version": "2.3.5",
"license": "MIT",
"bugs": {
"url": "https://github.com/bablosoft/browser-with-fingerprints/issues",
"email": "[email protected]"
},
"type": "commonjs",
"main": "./src/index.js",
"types": "./src/index.d.ts",
"scripts": {
"test": "mocha",
"format": "npx prettier -w .",
"release": "npm test && npm run format && npm publish",
"mutex:prebuild-x64": "prebuildify -t 18.20.6 --arch=x64 --napi --strip",
"mutex:prebuild-ia32": "prebuildify -t 18.20.6 --arch=ia32 --napi --strip",
"mutex:prebuild-all": "npm run mutex:prebuild-ia32 && npm run mutex:prebuild-x64 && node ./mutex/prebuild.mjs"
},
"keywords": [
"browser-fingerprinting",
"device-fingerprinting",
"browser-fingerprint",
"device-fingerprint",
"privacy-protection",
"detection-evasion",
"fingerprinting",
"stealth-mode",
"chromedriver",
"websecurity",
"fingerprint",
"automation",
"playwright",
"puppeteer",
"selenium",
"chromium",
"headless",
"devtools",
"security",
"stealth",
"browser",
"privacy",
"chrome",
"web"
],
"engines": {
"node": ">= 18"
},
"files": [
"src",
"project.xml"
],
"cpu": [
"ia32",
"x64"
],
"os": [
"win32"
],
"dependencies": {
"async-lock": "1.4.1",
"axios": "1.14.0",
"chokidar": "^5.0.0",
"chrome-remote-interface": "0.34.0",
"compare-versions": "6.1.1",
"debug": "4.4.3",
"dedent": "1.7.2",
"extract-zip": "2.0.1",
"fast-glob": "3.3.3",
"once": "1.4.0",
"proper-lockfile": "4.1.2"
},
"devDependencies": {
"@cheshire-caat/prettier-config": "^1.0.0",
"dotenv": "^17.4.1",
"mocha": "^11.7.5",
"napi-macros": "^2.2.2",
"prettier": "3.8.1"
},
"prettier": "@cheshire-caat/prettier-config"
}