-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.47 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.47 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
{
"name": "puppeteer-pro",
"version": "0.0.0-semantic-release",
"description": "A simple puppeteer wrapper to enable useful plugins with ease",
"main": "index.js",
"scripts": {
"clean": "rm -rf dist",
"lint": "eslint --fix",
"prebuild": "npm run clean",
"build": "tsc",
"postbuild": "npm run copy:injections && npm run copy:files",
"copy:injections": "copyfiles -u 1 src/plugins/*/injections/* dist",
"copy:files": "copyfiles package.json README.md LICENSE dist",
"test": "jest",
"test-watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fast-facts/puppeteer-pro.git"
},
"author": "fast-facts",
"license": "MIT",
"bugs": {
"url": "https://github.com/fast-facts/puppeteer-pro/issues"
},
"homepage": "https://github.com/fast-facts/puppeteer-pro#readme",
"keywords": [
"puppeteer",
"chrome",
"automation",
"plugin",
"anonymize",
"detection",
"stealth"
],
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"fingerprint-injector": "^2.1.82",
"ghost-cursor": "^1.4.2",
"user-agents": "^2.1.16"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^25.6.0",
"@types/user-agents": "^1.0.4",
"copyfiles": "^2.4.1",
"dotenv-safe": "^9.1.0",
"eslint-config-final": "^1.6.28",
"jest": "^30.3.0",
"puppeteer": "^24.40.0",
"ts-jest": "^29.4.9",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}