@justwicked/tmdb-client 1.0.1 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +3 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,13 +1,14 @@
1
1
  # TMDB Client Module
2
2
 
3
- A simple **TypeScript client** for **The Movie Database (TMDB) API (v3)**.
3
+ A simple TypeScript client for [The Movie Database API](https://developer.themoviedb.org/reference/getting-started)
4
+
4
5
  ---
5
6
 
6
7
  ### Basic Usage
7
8
 
8
9
  ```ts
9
10
  import 'server-only';
10
- import { TmdbClient } from '@justwicked/tmdb-api-wrapper';
11
+ import { TmdbClient } from '@justwicked/tmdb-client';
11
12
 
12
13
  const tmdbApi = new TmdbClient({
13
14
  next: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@justwicked/tmdb-client",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "A lightweight TypeScript Client for the TMDB API.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",