Create package.json
Browse files- package.json +7 -6
package.json
CHANGED
|
@@ -1,15 +1,16 @@
|
|
| 1 |
{
|
| 2 |
-
"name": "
|
| 3 |
"version": "1.0.0",
|
| 4 |
-
"description": "A
|
| 5 |
"main": "index.js",
|
| 6 |
"scripts": {
|
| 7 |
"start": "node index.js"
|
| 8 |
},
|
| 9 |
"dependencies": {
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
|
|
|
| 14 |
}
|
| 15 |
}
|
|
|
|
| 1 |
{
|
| 2 |
+
"name": "video-scraper",
|
| 3 |
"version": "1.0.0",
|
| 4 |
+
"description": "A Playwright-based scraper to extract video download links",
|
| 5 |
"main": "index.js",
|
| 6 |
"scripts": {
|
| 7 |
"start": "node index.js"
|
| 8 |
},
|
| 9 |
"dependencies": {
|
| 10 |
+
"axios": "^1.6.0",
|
| 11 |
+
"cheerio": "^1.0.0",
|
| 12 |
+
"cors": "^2.8.5",
|
| 13 |
+
"express": "^4.18.2",
|
| 14 |
+
"playwright-core": "^1.42.0"
|
| 15 |
}
|
| 16 |
}
|