This repository has been archived by the owner on Dec 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
40 lines (40 loc) · 1.44 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
{
"name": "hektcaptcha-extension",
"version": "0.3.2",
"description": "Automatically solve hCaptcha using AI.",
"private": true,
"scripts": {
"watch": "webpack --mode=development --watch --env browser=chrome --config config/webpack.config.js",
"watch:firefox": "webpack --mode=development --watch --env browser=firefox --config config/webpack.config.js",
"build": "webpack --mode=production --env browser=chrome --config config/webpack.config.js",
"build:firefox": "webpack --mode=production --env browser=firefox --config config/webpack.config.js",
"format": "prettier --write --ignore-unknown \"{config,public,src}/**/*.{html,css,js,ts,json}\""
},
"devDependencies": {
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^6.7.3",
"file-loader": "^6.2.0",
"mini-css-extract-plugin": "^2.7.2",
"prettier": "^2.8.2",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@jimp/plugin-crop": "^0.22.10",
"assert": "^2.0.0",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"http-browserify": "^1.7.0",
"https-browserify": "^1.0.0",
"jimp": "^0.22.10",
"onnxruntime-common": "^1.14.0",
"onnxruntime-web": "github:Wikidepia/hektCaptcha-onnxruntime-web",
"path-browserify": "^1.0.1",
"querystring-es3": "^0.2.1",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"url": "^0.11.0",
"util": "^0.12.5"
}
}