-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.42 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.42 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
{
"name": "puppeteer-proxy-plugin",
"version": "1.0.0",
"description": "Seamless proxy integration for Puppeteer and Playwright with automatic rotation, health checking, and per-page proxy assignment.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"clean": "rm -rf dist"
},
"keywords": [
"puppeteer",
"playwright",
"proxy",
"proxy-rotation",
"proxy-pool",
"web-scraping",
"browser-automation",
"socks5",
"http-proxy",
"proxy-chain"
],
"author": "BirdProxies <support@birdproxies.com> (https://birdproxies.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/birdproxies/puppeteer-proxy-plugin.git"
},
"homepage": "https://github.com/birdproxies/puppeteer-proxy-plugin#readme",
"bugs": {
"url": "https://github.com/birdproxies/puppeteer-proxy-plugin/issues"
},
"dependencies": {
"proxy-chain": "^2.5.0",
"socks-proxy-agent": "^8.0.0"
},
"peerDependencies": {
"puppeteer": ">=19.0.0",
"playwright": ">=1.30.0"
},
"peerDependenciesMeta": {
"puppeteer": {
"optional": true
},
"playwright": {
"optional": true
}
},
"devDependencies": {
"typescript": "^5.0.0",
"@types/node": "^20.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}