-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.89 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 1.89 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
{
"name": "automation-extra-interception-proxy",
"version": "1.0.1",
"description": "Puppeteer extra plugin for advanced interception and proxying requests",
"repository": "utyfua/automation-extra-interception-proxy",
"keywords": [
"puppeteer",
"interception",
"proxy"
],
"author": "Utyfua",
"license": "MIT",
"scripts": {
"build": "sh build.sh",
"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"
},
"main": "cjs/index.js",
"module": "esm/index.js",
"exports": {
".": {
"import": "./esm/index.js",
"require": "./cjs/index.js"
},
"./*": {
"import": "./esm/*.js",
"require": "./cjs/*.js"
},
"./src/*": "./src/*"
},
"files": [
"cjs",
"esm",
"src",
"LICENSE",
"README.md"
],
"dependencies": {
"puppeteer-extra-plugin": "*"
},
"peerDependencies": {
"data-urls": "*",
"got": "11",
"puppeteer-extra-plugin": "*"
},
"peerDependenciesMeta": {
"puppeteer-extra-plugin": {
"optional": true
},
"data-urls": {
"optional": true
},
"got": {
"optional": true
}
},
"devDependencies": {
"@types/data-urls": "^3.0.4",
"@types/jest": "^29.5.14",
"@types/node": "^20.16.5",
"@types/tough-cookie": "^4.0.5",
"copyfiles": "^2.4.1",
"data-urls": "^5.0.0",
"documentation": "^14.0.3",
"express": "^4.21.2",
"got": "^11.8.2",
"jest": "^29.7.0",
"jest-puppeteer": "^11.0.0",
"npm-run-all": "^4.1.5",
"puppeteer": "^24.1.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
}
}