forked from nsourov/puppeteer-extra-plugin-recaptcha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.43 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
83
84
85
{
"name": "puppeteer-extra-plugin-hecaptcha",
"version": "4.0.1",
"description": "A puppeteer-extra plugin to solve hCAPTCHAs automatically.",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/vaviloff/puppeteer-extra-plugin-hcaptcha"
},
"homepage": "https://github.com/vaviloff/puppeteer-extra-plugin-hcaptcha",
"author": "Naimur",
"license": "MIT",
"scripts": {
"clean": "rm -rf dist/*",
"tscheck": "tsc --pretty --noEmit",
"build": "yarn clean && tsc --module commonjs && rollup -c rollup.config.ts && yarn ambient-dts",
"test": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' ava -v src/**.test.ts",
"ambient-dts": "yarn ambient-dts-copy && yarn ambient-dts-fix-path",
"ambient-dts-copy": "copyfiles -u 1 \"./src/**/*.d.ts\" dist",
"ambient-dts-fix-path": "replace-in-files --string='/// <reference path=\"../src/' --replacement='/// <reference path=\"../dist/' 'dist/**/*.d.ts'",
"prepublishOnly": "npm run build"
},
"engines": {
"node": ">=9.11.2"
},
"ava": {
"compileEnhancements": false,
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"prettier": {
"printWidth": 80,
"semi": false,
"singleQuote": true
},
"keywords": [
"puppeteer",
"puppeteer-extra",
"puppeteer-extra-plugin",
"recaptcha",
"invisible",
"captcha",
"2captcha"
],
"devDependencies": {
"@types/debug": "^4.1.0",
"@types/node": "^10.12.23",
"@types/puppeteer": "^1.12.1",
"ava": "^1.2.1",
"copyfiles": "^2.3.0",
"lodash.camelcase": "^4.3.0",
"puppeteer-extra": "^2.1.3",
"replace-in-files-cli": "^0.3.0",
"rollup": "^1.31.1",
"rollup-plugin-node-resolve": "^5.0.2",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "^0.21.1",
"ts-node": "^8.0.2",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^8.0.1",
"typedoc": "^0.14.2",
"typedoc-plugin-markdown": "^1.1.26",
"typedoc-plugin-no-inherit": "^1.1.5",
"typescript": "^3.3.3"
},
"dependencies": {
"2captcha-api": "^1.0.0",
"debug": "^4.1.1",
"merge-deep": "^3.0.1",
"puppeteer-extra-plugin": "^3.0.4"
},
"bugs": {
"url": "https://github.com/vaviloff/puppeteer-extra-plugin-hcaptcha/issues"
}
}