Spaces:
Runtime error
Runtime error
Create package.json
Browse files- package.json +21 -0
package.json
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"name": "waf-bypass-api",
|
| 3 |
+
"version": "1.0.0",
|
| 4 |
+
"description": "API for bypassing WAF and Cloudflare protection",
|
| 5 |
+
"main": "server.js",
|
| 6 |
+
"scripts": {
|
| 7 |
+
"start": "node server.js"
|
| 8 |
+
},
|
| 9 |
+
"keywords": [
|
| 10 |
+
"api",
|
| 11 |
+
"waf",
|
| 12 |
+
"cloudflare",
|
| 13 |
+
"bypass"
|
| 14 |
+
],
|
| 15 |
+
"author": "Herza",
|
| 16 |
+
"license": "MIT",
|
| 17 |
+
"dependencies": {
|
| 18 |
+
"express": "^4.18.2",
|
| 19 |
+
"cors": "^2.8.5"
|
| 20 |
+
}
|
| 21 |
+
}
|