├── .env.example ├── .eslintrc.json ├── .github ├── CODEOWNERS ├── FUNDING.yml └── dependabot.yml ├── .gitignore ├── .prettierrc ├── .vscode └── settings.json ├── README.md ├── bun.lockb ├── components.json ├── globals.d.ts ├── next.config.mjs ├── package.json ├── postcss.config.mjs ├── public ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── browserconfig.xml ├── fallback-ce627215c0e4a9af.js ├── favicon-16x16.png ├── favicon-32x32.png ├── mstile-150x150.png ├── next.svg ├── site.webmanifest ├── sw.js ├── swe-worker-5c72df51bb1f6ee0.js ├── vercel.svg └── workbox-f1770938.js ├── src ├── app │ ├── api │ │ ├── advancedSearch │ │ │ └── route.ts │ │ ├── auth │ │ │ ├── [...nextauth] │ │ │ │ └── route.ts │ │ │ └── route.ts │ │ ├── episodes │ │ │ └── [id] │ │ │ │ └── route.ts │ │ ├── search │ │ │ └── [query] │ │ │ │ └── route.ts │ │ └── source │ │ │ └── [id] │ │ │ └── route.ts │ ├── catalog │ │ └── page.tsx │ ├── character │ │ └── [id] │ │ │ └── page.tsx │ ├── dmca │ │ └── page.tsx │ ├── favicon.ico │ ├── globals.css │ ├── home.tsx │ ├── info │ │ └── [id] │ │ │ └── page.tsx │ ├── layout.tsx │ ├── offline │ │ └── page.tsx │ ├── page.tsx │ ├── privacy │ │ └── page.tsx │ ├── profile │ │ └── page.tsx │ ├── providers.tsx │ ├── settings │ │ └── page.tsx │ ├── terms │ │ └── page.tsx │ └── watch │ │ └── [id] │ │ ├── handleProviderSwitch.tsx │ │ └── page.tsx ├── components │ ├── Changelogs.tsx │ ├── Footer.tsx │ ├── NavBar.tsx │ ├── Player │ │ ├── VidstackPlayer.tsx │ │ ├── base.css │ │ └── components │ │ │ ├── buttons.tsx │ │ │ ├── layouts │ │ │ ├── captions.module.css │ │ │ ├── video-layout.module.css │ │ │ └── video-layout.tsx │ │ │ ├── menus.tsx │ │ │ ├── sliders.tsx │ │ │ ├── time-group.tsx │ │ │ └── title.tsx │ ├── SideBar.tsx │ ├── ThemeToggle.tsx │ ├── TopProgressBar.tsx │ ├── character │ │ └── Slider.tsx │ ├── home │ │ └── homeCards.tsx │ ├── info │ │ ├── ImageZoom.tsx │ │ └── Tabs.tsx │ ├── session-provider.tsx │ ├── shared │ │ ├── Card.tsx │ │ ├── CasualCard.tsx │ │ ├── ColumnCard.tsx │ │ ├── ContinueWatching.tsx │ │ ├── Countdown.tsx │ │ ├── EpisodeList.tsx │ │ ├── Hero.tsx │ │ └── Video.tsx │ ├── theme-provider.tsx │ ├── ui │ │ ├── badge.tsx │ │ ├── button.tsx │ │ ├── carousel.tsx │ │ ├── dialog.tsx │ │ ├── drawer.tsx │ │ ├── dropdown-menu.tsx │ │ ├── input.tsx │ │ ├── scroll-area.tsx │ │ ├── select.tsx │ │ ├── separator.tsx │ │ └── tooltip.tsx │ └── watch │ │ └── WatchEpisodeList.tsx ├── db │ └── db.ts ├── hooks │ ├── VideoProgressSave.ts │ ├── useDebounce.ts │ └── useDeviceDetector.ts ├── lib │ ├── anime.ts │ ├── authenticated.ts │ ├── cache.ts │ ├── constants.ts │ ├── episode.ts │ ├── info.ts │ ├── promise.ts │ ├── title.ts │ └── utils.ts └── types │ ├── anify.ts │ ├── animeData.ts │ ├── anizip.ts │ ├── api.ts │ ├── consumet.ts │ ├── episodes.ts │ ├── gogo.ts │ ├── hianime.ts │ ├── malSync.ts │ ├── query.ts │ ├── seasonal.ts │ └── upcoming.ts ├── tailwind.config.ts └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @codeblitz97 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/README.md -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/bun.lockb -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/components.json -------------------------------------------------------------------------------- /globals.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/globals.d.ts -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/public/browserconfig.xml -------------------------------------------------------------------------------- /public/fallback-ce627215c0e4a9af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/public/fallback-ce627215c0e4a9af.js -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/public/favicon-32x32.png -------------------------------------------------------------------------------- /public/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/public/mstile-150x150.png -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/public/site.webmanifest -------------------------------------------------------------------------------- /public/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/public/sw.js -------------------------------------------------------------------------------- /public/swe-worker-5c72df51bb1f6ee0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/public/swe-worker-5c72df51bb1f6ee0.js -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /public/workbox-f1770938.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/public/workbox-f1770938.js -------------------------------------------------------------------------------- /src/app/api/advancedSearch/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/app/api/advancedSearch/route.ts -------------------------------------------------------------------------------- /src/app/api/auth/[...nextauth]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/app/api/auth/[...nextauth]/route.ts -------------------------------------------------------------------------------- /src/app/api/auth/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/app/api/auth/route.ts -------------------------------------------------------------------------------- /src/app/api/episodes/[id]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/app/api/episodes/[id]/route.ts -------------------------------------------------------------------------------- /src/app/api/search/[query]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/app/api/search/[query]/route.ts -------------------------------------------------------------------------------- /src/app/api/source/[id]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/app/api/source/[id]/route.ts -------------------------------------------------------------------------------- /src/app/catalog/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/app/catalog/page.tsx -------------------------------------------------------------------------------- /src/app/character/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/app/character/[id]/page.tsx -------------------------------------------------------------------------------- /src/app/dmca/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/app/dmca/page.tsx -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/app/home.tsx -------------------------------------------------------------------------------- /src/app/info/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/app/info/[id]/page.tsx -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/offline/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/app/offline/page.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/app/privacy/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/app/privacy/page.tsx -------------------------------------------------------------------------------- /src/app/profile/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/app/profile/page.tsx -------------------------------------------------------------------------------- /src/app/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/app/providers.tsx -------------------------------------------------------------------------------- /src/app/settings/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/app/settings/page.tsx -------------------------------------------------------------------------------- /src/app/terms/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/app/terms/page.tsx -------------------------------------------------------------------------------- /src/app/watch/[id]/handleProviderSwitch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/app/watch/[id]/handleProviderSwitch.tsx -------------------------------------------------------------------------------- /src/app/watch/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/app/watch/[id]/page.tsx -------------------------------------------------------------------------------- /src/components/Changelogs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/components/Changelogs.tsx -------------------------------------------------------------------------------- /src/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/components/Footer.tsx -------------------------------------------------------------------------------- /src/components/NavBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/components/NavBar.tsx -------------------------------------------------------------------------------- /src/components/Player/VidstackPlayer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/components/Player/VidstackPlayer.tsx -------------------------------------------------------------------------------- /src/components/Player/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/components/Player/base.css -------------------------------------------------------------------------------- /src/components/Player/components/buttons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/components/Player/components/buttons.tsx -------------------------------------------------------------------------------- /src/components/Player/components/layouts/captions.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/components/Player/components/layouts/captions.module.css -------------------------------------------------------------------------------- /src/components/Player/components/layouts/video-layout.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/components/Player/components/layouts/video-layout.module.css -------------------------------------------------------------------------------- /src/components/Player/components/layouts/video-layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/components/Player/components/layouts/video-layout.tsx -------------------------------------------------------------------------------- /src/components/Player/components/menus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/components/Player/components/menus.tsx -------------------------------------------------------------------------------- /src/components/Player/components/sliders.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/components/Player/components/sliders.tsx -------------------------------------------------------------------------------- /src/components/Player/components/time-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/components/Player/components/time-group.tsx -------------------------------------------------------------------------------- /src/components/Player/components/title.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/components/Player/components/title.tsx -------------------------------------------------------------------------------- /src/components/SideBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/components/SideBar.tsx -------------------------------------------------------------------------------- /src/components/ThemeToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/components/ThemeToggle.tsx -------------------------------------------------------------------------------- /src/components/TopProgressBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/components/TopProgressBar.tsx -------------------------------------------------------------------------------- /src/components/character/Slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/components/character/Slider.tsx -------------------------------------------------------------------------------- /src/components/home/homeCards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/components/home/homeCards.tsx -------------------------------------------------------------------------------- /src/components/info/ImageZoom.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/components/info/ImageZoom.tsx -------------------------------------------------------------------------------- /src/components/info/Tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/components/info/Tabs.tsx -------------------------------------------------------------------------------- /src/components/session-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/components/session-provider.tsx -------------------------------------------------------------------------------- /src/components/shared/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/components/shared/Card.tsx -------------------------------------------------------------------------------- /src/components/shared/CasualCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/components/shared/CasualCard.tsx -------------------------------------------------------------------------------- /src/components/shared/ColumnCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/components/shared/ColumnCard.tsx -------------------------------------------------------------------------------- /src/components/shared/ContinueWatching.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/components/shared/ContinueWatching.tsx -------------------------------------------------------------------------------- /src/components/shared/Countdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/components/shared/Countdown.tsx -------------------------------------------------------------------------------- /src/components/shared/EpisodeList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/components/shared/EpisodeList.tsx -------------------------------------------------------------------------------- /src/components/shared/Hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/components/shared/Hero.tsx -------------------------------------------------------------------------------- /src/components/shared/Video.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/components/shared/Video.tsx -------------------------------------------------------------------------------- /src/components/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/components/theme-provider.tsx -------------------------------------------------------------------------------- /src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/components/ui/carousel.tsx -------------------------------------------------------------------------------- /src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/components/ui/drawer.tsx -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/components/ui/input.tsx -------------------------------------------------------------------------------- /src/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/components/ui/select.tsx -------------------------------------------------------------------------------- /src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /src/components/watch/WatchEpisodeList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/components/watch/WatchEpisodeList.tsx -------------------------------------------------------------------------------- /src/db/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/db/db.ts -------------------------------------------------------------------------------- /src/hooks/VideoProgressSave.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/hooks/VideoProgressSave.ts -------------------------------------------------------------------------------- /src/hooks/useDebounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/hooks/useDebounce.ts -------------------------------------------------------------------------------- /src/hooks/useDeviceDetector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/hooks/useDeviceDetector.ts -------------------------------------------------------------------------------- /src/lib/anime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/lib/anime.ts -------------------------------------------------------------------------------- /src/lib/authenticated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/lib/authenticated.ts -------------------------------------------------------------------------------- /src/lib/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/lib/cache.ts -------------------------------------------------------------------------------- /src/lib/constants.ts: -------------------------------------------------------------------------------- 1 | export const ANIFY_URL = 'https://anify.eltik.cc'; 2 | -------------------------------------------------------------------------------- /src/lib/episode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/lib/episode.ts -------------------------------------------------------------------------------- /src/lib/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/lib/info.ts -------------------------------------------------------------------------------- /src/lib/promise.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/lib/promise.ts -------------------------------------------------------------------------------- /src/lib/title.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/lib/title.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/types/anify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/types/anify.ts -------------------------------------------------------------------------------- /src/types/animeData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/types/animeData.ts -------------------------------------------------------------------------------- /src/types/anizip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/types/anizip.ts -------------------------------------------------------------------------------- /src/types/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/types/api.ts -------------------------------------------------------------------------------- /src/types/consumet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/types/consumet.ts -------------------------------------------------------------------------------- /src/types/episodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/types/episodes.ts -------------------------------------------------------------------------------- /src/types/gogo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/types/gogo.ts -------------------------------------------------------------------------------- /src/types/hianime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/types/hianime.ts -------------------------------------------------------------------------------- /src/types/malSync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/types/malSync.ts -------------------------------------------------------------------------------- /src/types/query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/types/query.ts -------------------------------------------------------------------------------- /src/types/seasonal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/types/seasonal.ts -------------------------------------------------------------------------------- /src/types/upcoming.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/src/types/upcoming.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimizudev/elyzen/HEAD/tsconfig.json --------------------------------------------------------------------------------