├── .gitignore ├── README.md ├── package.json ├── src ├── extractors │ └── megacloud.ts ├── index.d.ts ├── server.ts └── utils │ ├── client.ts │ ├── constant.ts │ ├── decrypt.ts │ └── methods.ts ├── tsconfig.json └── vercel.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrfanKhan66/hianime-mapper/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrfanKhan66/hianime-mapper/HEAD/package.json -------------------------------------------------------------------------------- /src/extractors/megacloud.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrfanKhan66/hianime-mapper/HEAD/src/extractors/megacloud.ts -------------------------------------------------------------------------------- /src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrfanKhan66/hianime-mapper/HEAD/src/index.d.ts -------------------------------------------------------------------------------- /src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrfanKhan66/hianime-mapper/HEAD/src/server.ts -------------------------------------------------------------------------------- /src/utils/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrfanKhan66/hianime-mapper/HEAD/src/utils/client.ts -------------------------------------------------------------------------------- /src/utils/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrfanKhan66/hianime-mapper/HEAD/src/utils/constant.ts -------------------------------------------------------------------------------- /src/utils/decrypt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrfanKhan66/hianime-mapper/HEAD/src/utils/decrypt.ts -------------------------------------------------------------------------------- /src/utils/methods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrfanKhan66/hianime-mapper/HEAD/src/utils/methods.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrfanKhan66/hianime-mapper/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrfanKhan66/hianime-mapper/HEAD/vercel.json --------------------------------------------------------------------------------