first commit

This commit is contained in:
gotolombok
2026-01-31 17:32:07 +08:00
commit 0007660bd8
12 changed files with 1905 additions and 0 deletions

26
package.json Normal file
View File

@@ -0,0 +1,26 @@
{
"name": "moviebox-api-node",
"version": "1.0.0",
"description": "Node.js port of the MovieBox API wrapper",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "node --watch index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"moviebox",
"api",
"nodejs",
"scraper"
],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.7.9",
"cheerio": "^1.0.0",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2"
}
}