Spaces:
Paused
Paused
Update package.json
Browse files- package.json +9 -16
package.json
CHANGED
|
@@ -1,23 +1,16 @@
|
|
| 1 |
{
|
| 2 |
-
"name": "
|
| 3 |
"version": "1.0.0",
|
| 4 |
-
"
|
| 5 |
-
"
|
| 6 |
"scripts": {
|
| 7 |
-
"start": "node
|
| 8 |
},
|
| 9 |
-
"author": "
|
|
|
|
| 10 |
"dependencies": {
|
| 11 |
"express": "^4.18.2",
|
| 12 |
-
"
|
| 13 |
-
"
|
| 14 |
-
"cors": "^2.8.5",
|
| 15 |
-
"form-data": "^4.0.0",
|
| 16 |
-
"puppeteer": "^22.8.2",
|
| 17 |
-
"puppeteer-extra": "^3.3.6",
|
| 18 |
-
"puppeteer-extra-plugin-stealth": "^2.11.2",
|
| 19 |
-
"moment": "^2.30.1",
|
| 20 |
-
"chalk": "^5.4.1",
|
| 21 |
-
"uuid": "^9.0.0"
|
| 22 |
}
|
| 23 |
-
}
|
|
|
|
| 1 |
{
|
| 2 |
+
"name": "apk-debugger",
|
| 3 |
"version": "1.0.0",
|
| 4 |
+
"description": "A simple Express.js app to debug APK files with a 500MB upload limit",
|
| 5 |
+
"main": "server.js",
|
| 6 |
"scripts": {
|
| 7 |
+
"start": "node server.js"
|
| 8 |
},
|
| 9 |
+
"author": "Your Name",
|
| 10 |
+
"license": "ISC",
|
| 11 |
"dependencies": {
|
| 12 |
"express": "^4.18.2",
|
| 13 |
+
"express-fileupload": "^1.4.0",
|
| 14 |
+
"rimraf": "^5.0.5"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 15 |
}
|
| 16 |
+
}
|