This commit is contained in:
dela
2026-02-20 13:16:51 +08:00
commit 0ac4b23f07
36 changed files with 5042 additions and 0 deletions

27
package.json Normal file
View File

@@ -0,0 +1,27 @@
{
"name": "project-ghost",
"version": "0.1.0",
"description": "hCaptcha reverse engineering framework",
"main": "main.js",
"type": "module",
"scripts": {
"start": "node main.js",
"test": "node --test test/",
"test:n": "node test/test_n_gen.js",
"test:motion": "node test/test_motion.js"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"got-scraping": "^4.0.0"
},
"devDependencies": {},
"keywords": [
"hcaptcha",
"reverse-engineering",
"automation"
],
"license": "UNLICENSED",
"private": true
}