npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@northsoon/astro-seo

v1.0.2

Published

SEO component for Astro with full TypeScript support, auto-generated .d.ts declaration files, and IDE autocompletion

Downloads

286

Readme

@northsoon/astro-seo

🚀 SEO component for Astro with full TypeScript support.

An enhanced, maintained version of @astrolib/seo with properly exported TypeScript types, declaration files (.d.ts), and better documentation.

✨ Features

  • Full TypeScript support with auto-generated .d.ts declaration files
  • IDE autocompletion for all props (works out of the box!)
  • Type validation - TypeScript catches errors before runtime
  • ✅ Open Graph support (Facebook, LinkedIn, etc.)
  • ✅ Twitter Cards support
  • ✅ Customizable robots meta tags
  • ✅ Canonical URLs
  • ✅ Language alternates (hreflang)
  • ✅ Custom additional meta tags
  • ✅ Custom additional link tags
  • ✅ Compatible with Astro 4.x and 5.x

🔧 How TypeScript Types Work

This package includes pre-built declaration files (.d.ts) in the dist/ folder. When you install the package:

  1. TypeScript automatically finds the types via package.json"types": "./dist/index.d.ts"
  2. No manual setup required - just import and use
  3. Full autocompletion in VS Code, WebStorm, and other IDEs
  4. Type checking validates your props at compile time
@northsoon/astro-seo/
├── index.ts              ← Source code
├── dist/
│   ├── index.d.ts        ← Type declarations (auto-detected)
│   └── src/
│       └── types.d.ts    ← All exported types

📦 Installation

# npm
npm install @northsoon/astro-seo

# pnpm
pnpm add @northsoon/astro-seo

# yarn
yarn add @northsoon/astro-seo

🚀 Quick Start

---
import { AstroSeo } from "@northsoon/astro-seo";
---

<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />

  <AstroSeo
    title="My Page"
    description="Page description for SEO (150-160 characters)"
    canonical="https://mysite.com/page"
  />
</head>

📖 Full Example

---
import { AstroSeo } from "@northsoon/astro-seo";
---

<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />

  <AstroSeo
    title="My Amazing Page"
    titleTemplate="%s | My Site"
    description="A detailed description of my page for search engines"
    canonical="https://mysite.com/page"
    noindex={false}
    nofollow={false}
    openGraph={{
      url: "https://mysite.com/page",
      title: "My Amazing Page",
      description: "A detailed description for social media",
      type: "website",
      locale: "en_US",
      site_name: "My Website",
      images: [
        {
          url: "https://mysite.com/og-image.jpg",
          width: 1200,
          height: 630,
          alt: "Preview image",
          type: "image/jpeg",
        },
      ],
    }}
    twitter={{
      handle: "@myhandle",
      site: "@mysite",
      cardType: "summary_large_image",
    }}
    languageAlternates={[
      { hreflang: "en", href: "https://mysite.com/en/page" },
      { hreflang: "es", href: "https://mysite.com/es/page" },
      { hreflang: "x-default", href: "https://mysite.com/page" },
    ]}
    additionalMetaTags={[
      { name: "author", content: "Your Name" },
      { name: "theme-color", content: "#ffffff" },
    ]}
    additionalLinkTags={[
      { rel: "icon", href: "/favicon.ico" },
      { rel: "apple-touch-icon", href: "/apple-touch-icon.png", sizes: "180x180" },
      { rel: "manifest", href: "/site.webmanifest" },
    ]}
  />
</head>

🔧 Available Props

| Prop | Type | Description | |------|------|-------------| | title | string | Page title | | titleTemplate | string | Title template (use %s as placeholder) | | description | string | Meta description | | canonical | string | Canonical URL | | noindex | boolean | If true, tells search engines not to index | | nofollow | boolean | If true, tells search engines not to follow links | | robotsProps | AdditionalRobotsProps | Additional robots directives | | openGraph | OpenGraph | Open Graph configuration | | twitter | Twitter | Twitter Cards configuration | | facebook | { appId: string } | Facebook App ID | | mobileAlternate | MobileAlternate | Mobile alternate version | | languageAlternates | LanguageAlternate[] | Language alternate versions | | additionalMetaTags | MetaTag[] | Additional meta tags | | additionalLinkTags | LinkTag[] | Additional link tags |

🤖 Robots Configuration

<AstroSeo
  title="My Page"
  noindex={false}
  nofollow={false}
  robotsProps={{
    nosnippet: false,
    maxSnippet: -1,
    maxImagePreview: "large",
    maxVideoPreview: -1,
    noarchive: false,
    noimageindex: false,
    notranslate: false,
  }}
/>

📱 Open Graph for Articles

<AstroSeo
  title="My Blog Article"
  openGraph={{
    type: "article",
    article: {
      publishedTime: "2025-12-11T00:00:00Z",
      modifiedTime: "2025-12-11T12:00:00Z",
      authors: ["https://mysite.com/author"],
      section: "Technology",
      tags: ["Astro", "SEO", "TypeScript"],
    },
  }}
/>

🎥 Open Graph for Videos

<AstroSeo
  title="My Video"
  openGraph={{
    type: "video.other",
    video: {
      actors: [{ profile: "https://example.com/actor", role: "Lead" }],
      directors: ["https://example.com/director"],
      duration: 120,
      releaseDate: "2025-12-11",
      tags: ["tutorial", "astro"],
    },
  }}
/>

📝 TypeScript Types

All types are exported and work automatically - no additional setup needed!

import { AstroSeo } from "@northsoon/astro-seo";
import type {
  AstroSeoProps,
  OpenGraph,
  OpenGraphArticle,
  OpenGraphMedia,
  Twitter,
  MetaTag,
  LinkTag,
  LanguageAlternate,
  AdditionalRobotsProps,
} from "@northsoon/astro-seo";

// TypeScript validates your props
const seoConfig: AstroSeoProps = {
  title: "My Page",
  description: "Page description",
  openGraph: {
    type: "website",
    site_name: "My Site", // ✅ Autocompletion works!
  },
};

What You Get

| Feature | Description | |---------|-------------| | Autocompletion | All props show up in your IDE | | Type checking | Errors caught before runtime | | Hover documentation | See prop descriptions on hover | | Refactoring support | Safe renaming across your project |

Verifying Types Work

Run astro check in your project to verify:

npx astro check
# Should show: 0 errors ✓

🔄 Migration from @astrolib/seo

If you are coming from @astrolib/seo, migration is straightforward:

- import { AstroSeo } from "@astrolib/seo";
+ import { AstroSeo } from "@northsoon/astro-seo";

Props are 100% compatible!

� Troubleshooting

TypeScript can't find types

Make sure you have TypeScript configured in your Astro project:

npx astro add check

This installs @astrojs/check and typescript if missing.

IDE not showing autocompletion

  1. Restart your TypeScript server (VS Code: Ctrl+Shift+P → "TypeScript: Restart TS Server")
  2. Make sure you're on version 1.0.1 or higher

Verify installation

# Check installed version
npm list @northsoon/astro-seo

# Should show @northsoon/[email protected] or higher

�📄 License

MIT © Manuel Caballero

Made with ❤️ by Northsoon


⭐ If this package helps you, consider giving it a star on GitHub!