UNPKG

mangakakalot-api

Version:

Lightweight scraper library for MangaKakalot.gg (no server)

68 lines (67 loc) 1.74 kB
{ "name": "mangakakalot-api", "version": "1.0.3", "description": "Lightweight scraper library for MangaKakalot.gg (no server)", "main": "index.js", "types": "index.d.ts", "engines": { "node": ">=14.0.0" }, "scripts": { "start": "node index.js", "dev": "nodemon index.js", "build": "echo 'No build step required'", "test": "node test.js", "test:unit": "node test.js", "test:verbose": "node test.js --verbose", "vercel-build": "echo 'Vercel build complete'", "lint": "echo 'No linting configured'", "prepublishOnly": "npm test", "postinstall": "echo 'MangaKakalot API installed successfully! Run: mangakakalot-api to start the server.'" }, "keywords": [ "manga", "api", "scraping", "mangakakalot", "rest-api", "nodejs", "express", "anime", "manga-reader" ], "author": "MangaKakalot API Contributors", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/shafat-96/mangakakalot-api.git" }, "bugs": { "url": "https://github.com/shafat-96/mangakakalot-api/issues" }, "homepage": "https://github.com/shafat-96/mangakakalot-api#readme", "dependencies": { "axios": "^1.6.2", "cheerio": "^1.0.0-rc.12" }, "devDependencies": { "nodemon": "^3.0.2" }, "files": [ "index.js", "index.d.ts", "routes/", "controllers/", "scrappers/", "src/", "bin/", "README.md", "LICENSE" ], "exports": { ".": "./index.js", "./routes": "./routes/mangakakalotroutes.js", "./controllers": "./controllers/mangakakalot.js", "./scrappers": "./scrappers/mangakakalot.js" } }