├── .env.example ├── .eslintrc.json ├── .gitignore ├── README.md ├── app ├── (auth) │ ├── layout.tsx │ ├── sign-in │ │ └── page.tsx │ └── sign-up │ │ └── page.tsx ├── (main) │ ├── layout.tsx │ ├── list │ │ └── page.tsx │ ├── page.tsx │ ├── search │ │ └── page.tsx │ └── watch │ │ └── [id] │ │ └── page.tsx ├── api │ ├── auth │ │ └── [...nextauth] │ │ │ └── route.ts │ └── user │ │ └── route.ts ├── favicon.ico ├── globals.css ├── layout.tsx ├── loading.tsx └── providers.tsx ├── assets ├── cover.png └── no_image.jpg ├── components ├── AnimeInfoDetail.tsx ├── Artplayer.tsx ├── Card.tsx ├── CustomSelect.tsx ├── CustomSlider │ ├── CustomSlider.css │ └── CustomSlider.tsx ├── CustomTab.tsx ├── DetailCard.tsx ├── Footer.tsx ├── Form │ ├── SignInForm.tsx │ └── SignUpForm.tsx ├── GoogleSignin.tsx ├── Header.tsx ├── Icon.tsx ├── Menu │ ├── ExtensiveMenuItem.tsx │ ├── Menu.tsx │ ├── MenuItem.tsx │ └── MenuToggle.tsx ├── PopularCard.tsx ├── ProfileButton.tsx ├── SearchCard.tsx ├── ThemeSwitcher.tsx ├── Toaster │ ├── toast.tsx │ ├── toaster.tsx │ └── use-toast.tsx ├── TopCard.tsx └── index.tsx ├── data └── anime.ts ├── hooks ├── useLocalStorage.ts └── useWatchHistory.ts ├── lib ├── auth.ts ├── db.ts └── utils.ts ├── next.config.mjs ├── package.json ├── postcss.config.mjs ├── prisma ├── migrations │ ├── 20240601135047_init │ │ └── migration.sql │ └── migration_lock.toml └── schema.prisma ├── public ├── next.svg └── vercel.svg ├── sections ├── home │ ├── OtherAnime.tsx │ ├── RecentAnime.tsx │ ├── TopAnime.tsx │ ├── TrendingAnime.tsx │ └── index.tsx └── watch │ ├── AnimeInfo.tsx │ ├── EpisodesMobile.tsx │ ├── Player.tsx │ ├── Related.tsx │ ├── ServerList.tsx │ ├── episodes.tsx │ └── index.tsx ├── services ├── aniwatch │ ├── api.ts │ ├── types │ │ ├── anime.ts │ │ ├── controllers │ │ │ ├── animeAboutInfo.ts │ │ │ ├── animeCategory.ts │ │ │ ├── animeEpisodeSrcs.ts │ │ │ ├── animeEpisodes.ts │ │ │ ├── animeGenre.ts │ │ │ ├── animeProducer.ts │ │ │ ├── animeSearch.ts │ │ │ ├── animeSearchSuggestion.ts │ │ │ ├── episodeServers.ts │ │ │ ├── estimatedSchedule.ts │ │ │ └── index.ts │ │ ├── extractor.ts │ │ └── parsers │ │ │ ├── animeAboutInfo.ts │ │ │ ├── animeCategory.ts │ │ │ ├── animeEpisodeSrcs.ts │ │ │ ├── animeEpisodes.ts │ │ │ ├── animeGenre.ts │ │ │ ├── animeProducer.ts │ │ │ ├── animeSearch.ts │ │ │ ├── animeSearchSuggestions.ts │ │ │ ├── episodeServers.ts │ │ │ ├── estimatedSchedules.ts │ │ │ ├── homePage.ts │ │ │ └── index.ts │ └── util.ts └── consumet │ ├── api.ts │ └── types.ts ├── tailwind.config.ts ├── tsconfig.json └── types └── next-auth.d.ts /.env.example: -------------------------------------------------------------------------------- 1 | NEXT_PUBLIC_API_URL=xxx # your api url 2 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/README.md -------------------------------------------------------------------------------- /app/(auth)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/app/(auth)/layout.tsx -------------------------------------------------------------------------------- /app/(auth)/sign-in/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/app/(auth)/sign-in/page.tsx -------------------------------------------------------------------------------- /app/(auth)/sign-up/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/app/(auth)/sign-up/page.tsx -------------------------------------------------------------------------------- /app/(main)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/app/(main)/layout.tsx -------------------------------------------------------------------------------- /app/(main)/list/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/app/(main)/list/page.tsx -------------------------------------------------------------------------------- /app/(main)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/app/(main)/page.tsx -------------------------------------------------------------------------------- /app/(main)/search/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/app/(main)/search/page.tsx -------------------------------------------------------------------------------- /app/(main)/watch/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/app/(main)/watch/[id]/page.tsx -------------------------------------------------------------------------------- /app/api/auth/[...nextauth]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/app/api/auth/[...nextauth]/route.ts -------------------------------------------------------------------------------- /app/api/user/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/app/api/user/route.ts -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/app/loading.tsx -------------------------------------------------------------------------------- /app/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/app/providers.tsx -------------------------------------------------------------------------------- /assets/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/assets/cover.png -------------------------------------------------------------------------------- /assets/no_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/assets/no_image.jpg -------------------------------------------------------------------------------- /components/AnimeInfoDetail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/components/AnimeInfoDetail.tsx -------------------------------------------------------------------------------- /components/Artplayer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/components/Artplayer.tsx -------------------------------------------------------------------------------- /components/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/components/Card.tsx -------------------------------------------------------------------------------- /components/CustomSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/components/CustomSelect.tsx -------------------------------------------------------------------------------- /components/CustomSlider/CustomSlider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/components/CustomSlider/CustomSlider.css -------------------------------------------------------------------------------- /components/CustomSlider/CustomSlider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/components/CustomSlider/CustomSlider.tsx -------------------------------------------------------------------------------- /components/CustomTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/components/CustomTab.tsx -------------------------------------------------------------------------------- /components/DetailCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/components/DetailCard.tsx -------------------------------------------------------------------------------- /components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/components/Footer.tsx -------------------------------------------------------------------------------- /components/Form/SignInForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/components/Form/SignInForm.tsx -------------------------------------------------------------------------------- /components/Form/SignUpForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/components/Form/SignUpForm.tsx -------------------------------------------------------------------------------- /components/GoogleSignin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/components/GoogleSignin.tsx -------------------------------------------------------------------------------- /components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/components/Header.tsx -------------------------------------------------------------------------------- /components/Icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/components/Icon.tsx -------------------------------------------------------------------------------- /components/Menu/ExtensiveMenuItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/components/Menu/ExtensiveMenuItem.tsx -------------------------------------------------------------------------------- /components/Menu/Menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/components/Menu/Menu.tsx -------------------------------------------------------------------------------- /components/Menu/MenuItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/components/Menu/MenuItem.tsx -------------------------------------------------------------------------------- /components/Menu/MenuToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/components/Menu/MenuToggle.tsx -------------------------------------------------------------------------------- /components/PopularCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/components/PopularCard.tsx -------------------------------------------------------------------------------- /components/ProfileButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/components/ProfileButton.tsx -------------------------------------------------------------------------------- /components/SearchCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/components/SearchCard.tsx -------------------------------------------------------------------------------- /components/ThemeSwitcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/components/ThemeSwitcher.tsx -------------------------------------------------------------------------------- /components/Toaster/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/components/Toaster/toast.tsx -------------------------------------------------------------------------------- /components/Toaster/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/components/Toaster/toaster.tsx -------------------------------------------------------------------------------- /components/Toaster/use-toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/components/Toaster/use-toast.tsx -------------------------------------------------------------------------------- /components/TopCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/components/TopCard.tsx -------------------------------------------------------------------------------- /components/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/components/index.tsx -------------------------------------------------------------------------------- /data/anime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/data/anime.ts -------------------------------------------------------------------------------- /hooks/useLocalStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/hooks/useLocalStorage.ts -------------------------------------------------------------------------------- /hooks/useWatchHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/hooks/useWatchHistory.ts -------------------------------------------------------------------------------- /lib/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/lib/auth.ts -------------------------------------------------------------------------------- /lib/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/lib/db.ts -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /prisma/migrations/20240601135047_init/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/prisma/migrations/20240601135047_init/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/migration_lock.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/prisma/migrations/migration_lock.toml -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /sections/home/OtherAnime.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/sections/home/OtherAnime.tsx -------------------------------------------------------------------------------- /sections/home/RecentAnime.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/sections/home/RecentAnime.tsx -------------------------------------------------------------------------------- /sections/home/TopAnime.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/sections/home/TopAnime.tsx -------------------------------------------------------------------------------- /sections/home/TrendingAnime.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/sections/home/TrendingAnime.tsx -------------------------------------------------------------------------------- /sections/home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/sections/home/index.tsx -------------------------------------------------------------------------------- /sections/watch/AnimeInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/sections/watch/AnimeInfo.tsx -------------------------------------------------------------------------------- /sections/watch/EpisodesMobile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/sections/watch/EpisodesMobile.tsx -------------------------------------------------------------------------------- /sections/watch/Player.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/sections/watch/Player.tsx -------------------------------------------------------------------------------- /sections/watch/Related.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/sections/watch/Related.tsx -------------------------------------------------------------------------------- /sections/watch/ServerList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/sections/watch/ServerList.tsx -------------------------------------------------------------------------------- /sections/watch/episodes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/sections/watch/episodes.tsx -------------------------------------------------------------------------------- /sections/watch/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/sections/watch/index.tsx -------------------------------------------------------------------------------- /services/aniwatch/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/services/aniwatch/api.ts -------------------------------------------------------------------------------- /services/aniwatch/types/anime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/services/aniwatch/types/anime.ts -------------------------------------------------------------------------------- /services/aniwatch/types/controllers/animeAboutInfo.ts: -------------------------------------------------------------------------------- 1 | export type AnimeAboutInfoQueryParams = { 2 | id?: string; 3 | }; 4 | -------------------------------------------------------------------------------- /services/aniwatch/types/controllers/animeCategory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/services/aniwatch/types/controllers/animeCategory.ts -------------------------------------------------------------------------------- /services/aniwatch/types/controllers/animeEpisodeSrcs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/services/aniwatch/types/controllers/animeEpisodeSrcs.ts -------------------------------------------------------------------------------- /services/aniwatch/types/controllers/animeEpisodes.ts: -------------------------------------------------------------------------------- 1 | export type AnimeEpisodePathParams = { 2 | animeId?: string; 3 | }; 4 | -------------------------------------------------------------------------------- /services/aniwatch/types/controllers/animeGenre.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/services/aniwatch/types/controllers/animeGenre.ts -------------------------------------------------------------------------------- /services/aniwatch/types/controllers/animeProducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/services/aniwatch/types/controllers/animeProducer.ts -------------------------------------------------------------------------------- /services/aniwatch/types/controllers/animeSearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/services/aniwatch/types/controllers/animeSearch.ts -------------------------------------------------------------------------------- /services/aniwatch/types/controllers/animeSearchSuggestion.ts: -------------------------------------------------------------------------------- 1 | export type AnimeSearchSuggestQueryParams = { 2 | q?: string; 3 | }; 4 | -------------------------------------------------------------------------------- /services/aniwatch/types/controllers/episodeServers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/services/aniwatch/types/controllers/episodeServers.ts -------------------------------------------------------------------------------- /services/aniwatch/types/controllers/estimatedSchedule.ts: -------------------------------------------------------------------------------- 1 | export type EstimatedScheduleQueryParams = { 2 | date?: string; 3 | }; 4 | -------------------------------------------------------------------------------- /services/aniwatch/types/controllers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/services/aniwatch/types/controllers/index.ts -------------------------------------------------------------------------------- /services/aniwatch/types/extractor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/services/aniwatch/types/extractor.ts -------------------------------------------------------------------------------- /services/aniwatch/types/parsers/animeAboutInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/services/aniwatch/types/parsers/animeAboutInfo.ts -------------------------------------------------------------------------------- /services/aniwatch/types/parsers/animeCategory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/services/aniwatch/types/parsers/animeCategory.ts -------------------------------------------------------------------------------- /services/aniwatch/types/parsers/animeEpisodeSrcs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/services/aniwatch/types/parsers/animeEpisodeSrcs.ts -------------------------------------------------------------------------------- /services/aniwatch/types/parsers/animeEpisodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/services/aniwatch/types/parsers/animeEpisodes.ts -------------------------------------------------------------------------------- /services/aniwatch/types/parsers/animeGenre.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/services/aniwatch/types/parsers/animeGenre.ts -------------------------------------------------------------------------------- /services/aniwatch/types/parsers/animeProducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/services/aniwatch/types/parsers/animeProducer.ts -------------------------------------------------------------------------------- /services/aniwatch/types/parsers/animeSearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/services/aniwatch/types/parsers/animeSearch.ts -------------------------------------------------------------------------------- /services/aniwatch/types/parsers/animeSearchSuggestions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/services/aniwatch/types/parsers/animeSearchSuggestions.ts -------------------------------------------------------------------------------- /services/aniwatch/types/parsers/episodeServers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/services/aniwatch/types/parsers/episodeServers.ts -------------------------------------------------------------------------------- /services/aniwatch/types/parsers/estimatedSchedules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/services/aniwatch/types/parsers/estimatedSchedules.ts -------------------------------------------------------------------------------- /services/aniwatch/types/parsers/homePage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/services/aniwatch/types/parsers/homePage.ts -------------------------------------------------------------------------------- /services/aniwatch/types/parsers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/services/aniwatch/types/parsers/index.ts -------------------------------------------------------------------------------- /services/aniwatch/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/services/aniwatch/util.ts -------------------------------------------------------------------------------- /services/consumet/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/services/consumet/api.ts -------------------------------------------------------------------------------- /services/consumet/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/services/consumet/types.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/next-auth.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/photonrays/Anistream/HEAD/types/next-auth.d.ts --------------------------------------------------------------------------------