-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
54 lines (54 loc) · 1.16 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
{
"name": "tiktok-captcha-solver",
"version": "0.0.4",
"description": "Solves the TikTok captcha interactively using playwright or puppeteer.",
"main": "index.js",
"scripts": {
"test": "jest",
"lint": "prettier --write --ignore-unknown ."
},
"keywords": [
"tiktok",
"captcha",
"playwright",
"puppeteer"
],
"author": "arc298",
"license": "MIT",
"dependencies": {
"jimp": "^0.16.1",
"rembrandt": "^0.1.3"
},
"devDependencies": {
"husky": "^6.0.0",
"jest": "^26.6.3",
"lint-staged": "^11.0.0",
"playwright": "^1.10.0",
"prettier": "2.3.0",
"puppeteer": "^9.1.1"
},
"files": [
"index.js",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/arc298/tiktok-captcha-solver.git"
},
"bugs": {
"url": "https://github.com/arc298/tiktok-captcha-solver/issues"
},
"homepage": "https://github.com/arc298/tiktok-captcha-solver#readme",
"engines": {
"node": ">=12 <=16"
},
"prettier": {
"printWidth": 80,
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}