From 464e540b385a7875d4d25b6c2a2e0b3ec2ba6d9a Mon Sep 17 00:00:00 2001 From: Sgal Cheung Date: Sat, 15 Jun 2024 02:28:54 +0800 Subject: [PATCH] Update ghost.mdx (#8518) Co-authored-by: Sarah Rainsberger --- src/content/docs/en/guides/cms/ghost.mdx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/content/docs/en/guides/cms/ghost.mdx b/src/content/docs/en/guides/cms/ghost.mdx index fda9e92fd82d2..117b77e8f3102 100644 --- a/src/content/docs/en/guides/cms/ghost.mdx +++ b/src/content/docs/en/guides/cms/ghost.mdx @@ -58,22 +58,25 @@ Your root directory should now include these new files: ### Installing dependencies -To connect with Ghost, install the official content API wrapper [`@tryghost/content-api`](https://www.npmjs.com/package/@tryghost/content-api) using the command below for your preferred package manager: +To connect with Ghost, install the official content API wrapper [`@tryghost/content-api`](https://www.npmjs.com/package/@tryghost/content-api) using the command below for your preferred package manager, and optionally, a helpful package containing type definitions if you are using TypeScript: ```shell npm install @tryghost/content-api + npm install --save @types/tryghost__content-api ``` ```shell pnpm add @tryghost/content-api + pnpm add --save-dev @types/tryghost__content-api ``` ```shell yarn add @tryghost/content-api + yarn add --dev @types/tryghost__content-api ```