ci: Add TMDB_API key
feat: Add lint and fmt rules
ci: Add CI/CD
API-client for [TMDb]'s API.
[!CAUTION] This project is not finished and doesn't support all endpoints for TMDb yet.
import { Movie } from "jsr:@timharek/tmdb";
const search = await Movie.search({ query: "Spider-Man" });
// Do something with the data
const movie = await Movie.get(movieId);