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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@hoverkraft/slidev-theme

v0.2.0

Published

Hoverkraft branding theme for Slidev

Readme

@hoverkraft/slidev-theme

Hoverkraft-branded theme for Slidev.

Usage

Install the theme in a Slidev deck:

npm install -D @hoverkraft/slidev-theme

The theme enables Typst, pane, and Rabbit addons by default, and ships them as package dependencies so decks do not need to install them separately:

npm install -D @hoverkraft/slidev-theme

Configure the deck frontmatter:

---
theme: "@hoverkraft/slidev-theme"
---

Use the branded cover layout:

---
layout: cover
---

# My presentation

Built with Hoverkraft Slidev theme.

Branding

The theme ships with Hoverkraft visual tokens:

  • Primary: #0073cc
  • Secondary: #cc4400
  • Dark base: #1d2026
  • Fonts: Inter for prose and Roboto Mono for code

Logos

The theme provides the Hoverkraft logos as autoimported components, so decks can use them without any extra setup:

  • <HoverkraftIcon /> - the Hoverkraft pictogram.
  • <HoverkraftLogo /> - the Hoverkraft wordmark (dark, tuned for light backgrounds).
  • <HoverkraftFooter /> - a reusable footer signature (by + logo), matching the talk-style byline pattern.
<HoverkraftIcon size="4rem" />
<HoverkraftLogo size="2.5rem" />
<HoverkraftFooter />

Logo components accept the following props:

  • size (CSS length, default 1em for the icon and 1.6em for the wordmark) - sets the rendered height; width scales automatically.
  • label (string, default Hoverkraft) - the accessible name announced by screen readers.
  • decorative (boolean, default false) - hides the logo from assistive technology when it is purely decorative.

<HoverkraftFooter /> accepts:

  • byLabel (string, default by) - prefix text displayed before the logo.
  • logoSize (CSS length, default 1.1rem) - rendered logo height.
  • fixed (boolean, default false) - pins the footer to the slide viewport.
  • right (CSS length, default 0.75rem) - right offset when fixed.
  • bottom (CSS length, default 0.5rem) - bottom offset when fixed.
  • opacity (number, default 0.85) - footer opacity.

Use it directly in slide content:

<HoverkraftFooter />

Or as a global bottom layer in a deck:

<!-- global-bottom.vue -->
<template>
  <HoverkraftFooter v-if="$nav.currentLayout !== 'cover'" fixed />
</template>

Default Addons

The theme enables these addons through slidev.defaults.addons:

Slide counters and progress chrome can be built with Slidev's $nav global context, and slide scaling uses Slidev's built-in zoom: frontmatter support.

Development

Run commands from the workspace root:

npm install
npm run lint
npm run test
npm run build