Spaces:
Sleeping
Sleeping
Create package.json
Browse files- package.json +31 -0
package.json
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"name": "shortlink-ocr-app",
|
| 3 |
+
"version": "1.0.0",
|
| 4 |
+
"description": "ShortLink Manager with OCR Verification",
|
| 5 |
+
"main": "server.js",
|
| 6 |
+
"scripts": {
|
| 7 |
+
"start": "node server.js",
|
| 8 |
+
"dev": "nodemon server.js",
|
| 9 |
+
"test": "node test.js"
|
| 10 |
+
},
|
| 11 |
+
"keywords": [
|
| 12 |
+
"shortlink",
|
| 13 |
+
"ocr",
|
| 14 |
+
"verification",
|
| 15 |
+
"whatsapp",
|
| 16 |
+
"express"
|
| 17 |
+
],
|
| 18 |
+
"author": "Your Name",
|
| 19 |
+
"license": "MIT",
|
| 20 |
+
"dependencies": {
|
| 21 |
+
"express": "^4.18.2",
|
| 22 |
+
"multer": "^1.4.5-lts.1",
|
| 23 |
+
"tesseract.js": "^5.0.4"
|
| 24 |
+
},
|
| 25 |
+
"devDependencies": {
|
| 26 |
+
"nodemon": "^3.0.2"
|
| 27 |
+
},
|
| 28 |
+
"engines": {
|
| 29 |
+
"node": ">=14.0.0"
|
| 30 |
+
}
|
| 31 |
+
}
|