-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
58 lines (58 loc) · 1.77 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": "recaptcha-solver",
"version": "0.3.0",
"description": "Solve reCAPTCHA challenges by using offline speech recognition.",
"keywords": [
"reCAPTCHA",
"playwright"
],
"author": "JacobLinCool <[email protected]> (https://github.com/JacobLinCool)",
"license": "MIT",
"main": "lib/index.js",
"module": "lib/index.mjs",
"types": "lib/index.d.ts",
"bin": "scripts/postinstall.js",
"scripts": {
"test": "jest --coverage",
"dev": "tsup --watch",
"build": "tsup",
"docs": "typedoc ./src/",
"format": "prettier --write '**/*.{js,ts,jsx,tsx,json,yml,yaml,md,html}' --ignore-path .gitignore",
"lint": "eslint .",
"postinstall": "node ./scripts/postinstall.js"
},
"files": [
"scripts",
"lib"
],
"devDependencies": {
"@types/jest": "^27.5.2",
"@types/node": "^17.0.45",
"@types/wav": "^1.0.1",
"@types/yauzl": "^2.10.0",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^27.5.1",
"prettier": "^2.7.1",
"ts-jest": "^27.1.5",
"tsup": "^5.12.9",
"typedoc": "^0.22.18",
"typescript": "^4.7.4"
},
"dependencies": {
"playwright-core": "^1.24.2",
"vosk-koffi": "^1.0.8",
"wav": "^1.0.2",
"yauzl": "^2.10.0"
},
"homepage": "https://github.com/JacobLinCool/recaptcha-solver#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/JacobLinCool/recaptcha-solver.git"
},
"bugs": {
"url": "https://github.com/JacobLinCool/recaptcha-solver/issues"
}
}