Add files via upload

This commit is contained in:
shafat-96
2025-02-23 13:48:48 +06:00
committed by GitHub
commit 373f793300
8 changed files with 2189 additions and 0 deletions

35
package.json Normal file
View File

@@ -0,0 +1,35 @@
{
"name": "anilist-animepahe-mapper",
"version": "1.0.0",
"description": "A mapper and API between AniList and AnimePahe",
"main": "src/index.js",
"type": "module",
"engines": {
"node": ">=18.x"
},
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"vercel-build": "echo hello"
},
"keywords": [
"anime",
"anilist",
"animepahe",
"api"
],
"author": "",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"graphql": "^16.8.1",
"graphql-request": "^6.1.0",
"node-fetch": "^3.3.2",
"node-html-parser": "^7.0.1"
},
"devDependencies": {
"nodemon": "^3.0.2"
}
}