-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.11 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
{
"name": "t2-puppeteer-plugin-random-ua",
"version": "0.0.2",
"description": "A Puppeteer plugin for random user-agents.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"repository": "https://github.com/T2LEAF/t2-puppeteer-plugin-random-ua",
"scripts": {
"build": "tsc",
"dev": "nodemon --exec ts-node src/index.ts",
"prepare": "yarn build",
"test":"ts-node test"
},
"license": "MIT",
"engines": {
"node": ">=14"
},
"devDependencies": {
"nodemon": "^3.0.3",
"puppeteer": "^24.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"puppeteer-extra-plugin": "^3.2.3"
},
"peerDependencies": {
"puppeteer-extra": "*"
},
"peerDependenciesMeta": {
"puppeteer-extra": {
"optional": true
}
},
"keywords": [
"puppeteer",
"puppeteer-extra",
"puppeteer-extra-plugin",
"random-user-agent",
"chrome",
"headless",
"pupeteer"
]
}