-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
70 lines (70 loc) · 1.72 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
{
"name": "nocaptchaai-puppeteer",
"version": "2.0.1",
"description": "Puppeteer package for NoCaptchaAI ⚡️",
"main": "lib/index.js",
"files": [
"lib"
],
"typings": "lib/index.d.ts",
"scripts": {
"dev": "ts-node example/index.ts",
"ts-check": "tsc",
"clean": "rimraf lib",
"build": "tsc",
"release": "pnpm clean && pnpm build && release-it",
"lint": "eslint . --config .eslintrc.json --cache",
"prettier": "prettier -c . --config .prettierrc.json",
"format": "prettier -w . --config .prettierrc.json",
"prepare": "husky install"
},
"engines": {
"node": ">=18",
"pnpm": ">=8"
},
"homepage": "https://nocaptchaai.com",
"repository": {
"type": "git",
"url": "https:[email protected]:noCaptchaAi/nocaptchaai-puppeteer.git"
},
"bugs": {
"url": "https://github.com/noCaptchaAi/nocaptchaai-puppeteer/issues"
},
"author": "MohamadKh75",
"license": "MIT",
"keywords": [
"puppeteer",
"noCaptchaAi",
"captcha",
"captcha-solver",
"captcha-bypass",
"recaptcha",
"recaptcha-solver",
"recaptcha-bypass",
"hcaptcha",
"hcaptcha-solver",
"hcaptcha-bypass"
],
"dependencies": {
"axios": "^1.3.5"
},
"devDependencies": {
"@commitlint/cli": "^17.5.1",
"@commitlint/config-conventional": "^17.4.4",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"eslint": "^8.38.0",
"husky": "^8.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.7",
"puppeteer": "^19.8.5",
"release-it": "^15.10.1",
"rimraf": "^4.4.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"peerDependencies": {
"puppeteer": "*"
}
}