-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
58 lines (58 loc) · 1.47 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
{
"name": "puppeteer-extra-plugin-recaptcha-capmonster",
"version": "1.0.5",
"description": "A puppeteer-extra plugin that implements CapMonster support for puppeteer-extra-plugin-recaptcha.",
"types": "dist/index.d.ts",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.ts",
"scripts": {
"build": "npm run build:tsc && npm run build:rollup",
"build:tsc": "tsc --module commonjs",
"build:rollup": "rollup -c rollup.config.ts"
},
"files": [
"dist"
],
"keywords": [
"puppeteer",
"puppeteer-extra",
"puppeteer-extra-plugin",
"puppeteer-extra-plugin-recaptcha",
"puppeteer-extra-plugin-recaptcha-capmonster",
"recaptcha",
"hcaptcha",
"captcha",
"2captcha",
"capmonster"
],
"repository": {
"type": "git",
"url": "https://github.com/notsapinho/puppeteer-extra-plugin-recaptcha-capmonster.git"
},
"author": "notsapinho",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.3",
"@types/debug": "^4.1.7",
"@types/node": "^16.11.11",
"@types/puppeteer": "^5.4.6",
"dotenv": "^16.0.1",
"jest": "^28.1.1",
"jest-puppeteer": "^6.1.0",
"puppeteer-extra-plugin-recaptcha": "^3.5.0",
"puppeteer-extra-plugin-recaptcha-capmonster": "^1.0.5",
"rollup": "^2.75.6",
"ts-node": "^10.8.1",
"tslib": "^2.4.0",
"typescript": "^4.7.3"
},
"dependencies": {
"axios": "^0.27.2",
"debug": "^4.3.4"
},
"engines": {
"node": ">=12.0.0"
}
}