Reaperxxxx commited on
Commit
f384711
·
verified ·
1 Parent(s): 46afeb9

Create package.json

Browse files
Files changed (1) hide show
  1. package.json +15 -0
package.json ADDED
@@ -0,0 +1,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
+ "cors": "^2.8.5",
12
+ "express": "^4.18.2",
13
+ "playwright-core": "^1.42.0"
14
+ }
15
+ }