-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 854 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 854 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
34
{
"name": "exploit-sniper",
"version": "2.0.0",
"description": "Exploit-$niper — Precision Strike Web Security Scanner",
"type": "module",
"bin": {
"exploit-sniper": "./dist/cli.mjs"
},
"scripts": {
"build": "node build.mjs",
"start": "node dist/cli.mjs",
"dev": "tsx src/cli.ts"
},
"keywords": ["security", "scanner", "xss", "sqli", "lfi", "ssrf", "idor", "cors", "pentesting", "bug-bounty", "hacking"],
"author": "Ibrahim-dad",
"license": "MIT",
"engines": {
"node": ">=18"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.1.0",
"cli-progress": "^3.12.0",
"cli-table3": "^0.6.5",
"ora": "^8.1.1"
},
"devDependencies": {
"@types/cli-progress": "^3.11.6",
"@types/node": "^22.0.0",
"esbuild": "^0.24.0",
"tsx": "^4.21.0",
"typescript": "^5.6.0"
}
}