-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
43 lines (43 loc) · 1.19 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
{
"name": "fc-captcha",
"version": "1.1.0",
"description": "TikTok Anti puzzle captcha",
"main": "index.js",
"scripts": {
"dev:build": "cross-env NODE_ENV=development webpack --mode development --config ./webpack.config.js",
"build:babel": "babel src/index.js -d dist",
"dev:start": "node ./src/index.js",
"start": "yarn dev:build && node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"anti captcha",
"anticaptcha",
"anti puzzle captcha",
"TikTok"
],
"author": "mrZLab630 <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mrzlab630/TikTok-Anti-puzzle-captcha.git"
},
"dependencies": {
"node-fetch": "^2.6.0",
"opencv4nodejs": "^5.5.0",
"puppeteer": "^3.0.4",
"util": "^0.12.3"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.9.6",
"babel-loader": "^8.1.0",
"cross-env": "^7.0.2",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-node-externals": "^1.7.2"
}
}