-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.04 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
{
"name": "inspector-cli",
"version": "1.0.0",
"description": "CLI for inspecting web sites",
"main": "dist/index.js",
"bin": {
"inspector": "dist/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npx ts-node src/index.ts",
"build": "npx tsc -b && chmod +x dist/index.js",
"run" : "npx tsc -w"
},
"type": "module",
"author": "Mark Lummus",
"license": "ISC",
"dependencies": {
"ajv": "^8.17.1",
"commander": "^13.0.0",
"csv-parse": "^5.6.0",
"dotenv": "^16.4.7",
"figlet": "^1.8.0",
"jimp": "^1.6.0",
"openai": "^4.79.1",
"puppeteer": "^24.0.0",
"puppeteer-cluster": "^0.24.0",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-adblocker": "^2.13.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"scrapfly-sdk": "^0.6.9",
"ts-loader": "^9.5.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},
"devDependencies": {
"@types/ajv": "^1.0.4",
"@types/figlet": "^1.7.0",
"@types/node": "^22.10.7"
}
}