-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 3.36 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 3.36 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
{
"name": "@aitofy/browser-profiles",
"version": "0.2.12",
"description": "Self-hosted anti-detect browser profiles. Open-source AdsPower alternative for Puppeteer & Playwright.",
"keywords": [
"antidetect",
"anti-detect",
"antidetect-browser",
"browser-profiles",
"puppeteer",
"playwright",
"automation",
"multi-account",
"fingerprint",
"multilogin-alternative",
"adspower-alternative",
"gologin-alternative",
"extower-alternative",
"self-hosted",
"privacy",
"browser-automation",
"web-scraping",
"stealth",
"proxy",
"puppeteer-stealth",
"chrome-automation",
"webrtc-leak",
"canvas-fingerprint",
"browser-fingerprint",
"rebrowser"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"bin": {
"browser-profiles": "./dist/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./puppeteer": {
"types": "./dist/puppeteer.d.ts",
"import": "./dist/puppeteer.mjs",
"require": "./dist/puppeteer.js"
},
"./playwright": {
"types": "./dist/playwright.d.ts",
"import": "./dist/playwright.mjs",
"require": "./dist/playwright.js"
},
"./extower": {
"types": "./dist/extower.d.ts",
"import": "./dist/extower.mjs",
"require": "./dist/extower.js"
}
},
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"llms.txt",
"LICENSE"
],
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"playwright": ">=1.30.0",
"puppeteer": ">=19.0.0",
"puppeteer-core": ">=19.0.0",
"rebrowser-puppeteer-core": ">=22.0.0"
},
"peerDependenciesMeta": {
"puppeteer": {
"optional": true
},
"puppeteer-core": {
"optional": true
},
"rebrowser-puppeteer-core": {
"optional": true
},
"playwright": {
"optional": true
}
},
"dependencies": {
"chrome-launcher": "^1.1.2",
"chrome-remote-interface": "^0.33.2",
"commander": "^12.1.0",
"proxy-chain": "^2.5.5",
"rebrowser-puppeteer-core": ">=22.0.0"
},
"devDependencies": {
"@types/chrome-remote-interface": "^0.33.0",
"@types/node": "^20.10.0",
"playwright": "^1.40.0",
"puppeteer-core": "^24.8.0",
"tsup": "^8.0.1",
"typescript": "^5.3.0",
"vitest": "^1.1.0"
},
"engines": {
"node": ">=18.0.0"
},
"author": "Aitofy <hello@aitofy.dev>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/aitofy-dev/browser-profiles"
},
"homepage": "https://aitofy.dev/browser-profiles",
"bugs": {
"url": "https://github.com/aitofy-dev/browser-profiles/issues"
},
"sideEffects": false
}