-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
34 lines (34 loc) · 938 Bytes
/
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
{
"name": "imposter",
"description": "The most advanced humanizing wrapper over Puppeteer. Ever.",
"keywords": [
"humanizing",
"puppeteer",
"anti-detection"
],
"type": "module",
"main": "./dist/Imposter.js",
"types": "./dist/Imposter.d.ts",
"author": "Eugene Bos, eugenebos.com",
"license": "See LICENSE.md",
"repository": {
"type": "git",
"url": "[email protected]:TheGP/imposter.git"
},
"scripts": {
"start": "node app.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js test.js",
"build": "npx esbuild ./src/Imposter.ts --format=esm --outdir=./dist --platform=node --target=node21 --sourcemap && tsc --emitDeclarationOnly",
"dev": "nodemon"
},
"dependencies": {
"esbuild": "^0.21.5",
"ghost-cursor": "^1.3.0",
"puppeteer": "^22.1.0"
},
"devDependencies": {
"jest": "^29.7.0",
"nodemon": "^3.1.4",
"prettier": "3.3.2"
}
}