-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·33 lines (33 loc) · 855 Bytes
/
package.json
File metadata and controls
executable file
·33 lines (33 loc) · 855 Bytes
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
{
"name": "tenshi",
"description": "Fast, robust, and flexible automation tool for bypassing Cloudflare challenges using computer vision (OpenCV) and browser automation.",
"version": "1.0.0",
"author": "NorkzYT",
"private": false,
"scripts": {
"clean:install": "rm -rf node_modules/ && rm -rf bun.lockb && bun i",
"prettier:check": "prettier --check .",
"prettier:format": "prettier --write .",
"preinstall": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "echo \"[Husky] pre-commit\"",
"commit-msg": "echo \"[Husky] commit-msg\""
}
},
"dependencies": {
"puppeteer": "^24.6.1",
"ts-node": "^10.9.2"
},
"devDependencies": {
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"husky": "^9.0.0",
"opencommit": "^3.0.4"
},
"engines": {
"npm": ">=7.10.0",
"node": ">=16.0.0"
}
}