forked from berstend/puppeteer-extra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.12 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
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@extra/proxy-router",
"version": "3.1.4",
"description": "A plugin for playwright & puppeteer to route proxies dynamically.",
"repository": "berstend/puppeteer-extra",
"homepage": "https://github.com/berstend/puppeteer-extra/tree/master/packages/plugin-proxy-router",
"author": "berstend",
"license": "MIT",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rimraf dist/*",
"tscheck": "tsc --pretty --noEmit",
"prebuild": "run-s clean",
"build": "run-s build:tsc build:rollup",
"build:tsc": "tsc --project tsconfig.json --module commonjs",
"build:rollup": "rollup -c rollup.config.ts",
"docs": "node -e 0",
"test": "run-s build",
"pretest-ci": "run-s build",
"test-ci": "run-s build"
},
"engines": {
"node": ">=14"
},
"prettier": {
"printWidth": 80,
"semi": false,
"singleQuote": true
},
"keywords": [
"puppeteer",
"playwright",
"puppeteer-extra",
"playwright-extra",
"proxy",
"proxy-router",
"headless",
"luminati"
],
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/node": "14.17.6",
"@types/puppeteer": "*",
"ava": "2.4.0",
"copyfiles": "^2.1.1",
"npm-run-all": "^4.1.5",
"playwright-core": "1.24.2",
"prettier": "^2.7.1",
"puppeteer": "^15.5.0",
"puppeteer-extra": "^3.3.4",
"replace-in-files-cli": "^0.3.1",
"rimraf": "^3.0.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "^0.25.2",
"ts-node": "^8.5.4",
"typescript": "^4.7.4"
},
"dependencies": {
"debug": "^4.1.1",
"merge-deep": "^3.0.2",
"proxy-chain": "^2.0.6",
"puppeteer-extra-plugin": "^3.2.2"
},
"peerDependencies": {
"playwright-extra": "*",
"puppeteer-extra": "*"
},
"peerDependenciesMeta": {
"puppeteer-extra": {
"optional": true
},
"playwright-extra": {
"optional": true
}
}
}