-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.29 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
{
"name": "automation-extra-interception-proxy",
"version": "0.9.0",
"description": "Puppeteer extra plugin for advanced interception and proxying requests",
"repository": "utyfua/automation-extra-interception-proxy",
"typings": "dist/index.d.ts",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"files": [
"dist",
"src",
"README.md"
],
"scripts": {
"prebuild": "rimraf --glob dist/*",
"build": "rollup -c",
"docs": "documentation readme ./src/index.ts --github --section API --parse-extension=ts --require-extension=.ts ",
"test:dev": "node test.dev",
"test:dev:build": "run-s build test:dev",
"test:js": "jest -c jest.config.js",
"test:server": "node ./testServer",
"test": "run-s build test:js",
"test-ci": "run-s test",
"ambient-dts": "run-s ambient-dts-copy",
"ambient-dts-copy": "copyfiles -u 1 \"src/**/*.d.ts\" dist"
},
"keywords": [
"puppeteer",
"interception",
"proxy"
],
"author": "Utyfua",
"license": "MIT",
"dependencies": {
"data-urls": "^5.0.0",
"got": "^11.8.2",
"proxy-agent": "^6.4.0",
"puppeteer-extra-plugin": "^3.2.3",
"puppeteer-tough-cookie-store": "^1.1.0",
"tough-cookie": "^4.1.4"
},
"peerDependencies": {
"puppeteer": "*",
"puppeteer-extra": "*",
"tough-cookie": "*"
},
"peerDependenciesMeta": {
"puppeteer": {
"optional": true
},
"puppeteer-extra": {
"optional": true
},
"tough-cookie": {
"optional": true
}
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-typescript": "^7.24.7",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/data-urls": "^3.0.4",
"@types/jest": "^29.5.12",
"@types/node": "^20.16.5",
"@types/tough-cookie": "^4.0.5",
"copyfiles": "^2.4.1",
"documentation": "^13.2.5",
"express": "^4.19.2",
"jest": "^29.7.0",
"jest-puppeteer": "^10.1.0",
"npm-run-all": "^4.1.5",
"puppeteer": "^23.3.0",
"rimraf": "^6.0.1",
"rollup": "^4.21.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^4.9.5"
}
}