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

decksmith

v1.0.0

Published

A Svelte 5 presentation framework originally inspired by Reveal.js

Downloads

112

Readme

Decksmith

A modern presentation framework built with Svelte 5. Create beautiful, interactive presentations using components and modern JavaScript.

Decksmith was originally inspired by Reveal.js.

Features

  • Slide Navigation — Horizontal and vertical 2D slide grid
  • Transitions — Fade, slide, convex, concave, zoom (per-slide or global)
  • Fragments — Step-by-step reveals with 17 animation styles
  • Keyboard & Touch — Full keyboard navigation + mobile swipe support
  • Overview Mode — Bird's-eye view of all slides (ESC key)
  • Speaker Notes — Separate speaker window with timer and notes
  • Markdown — Write slide content in Markdown
  • Code Highlighting — Syntax highlighting with line-by-line step-through
  • Auto-Animate — Automatically animate matching elements between slides
  • Scroll View — Render as a scrollable page
  • Themes — 5 built-in themes (Obsidian, Air, Dusk, Parchment, Ember)
  • Hash Routing — URL reflects current slide for deep-linking
  • Auto-Scaling — Content scales to fit any viewport
  • PDF Export — Print-friendly layout via ?print-pdf
  • Progress Bar & Slide Numbers — Configurable UI controls

Quick Start

Install Decksmith from npm:

npm install decksmith

Then import it in your presentation file:

<script lang="ts">
  import { Deck, Slide, Fragment } from "decksmith";
</script>

<Deck theme="obsidian" transition="slide">
  <Slide h={0} v={0}>
    <h1>Hello World</h1>
  </Slide>

  <Slide h={1} v={0}>
    <h2>Second Slide</h2>
    <Fragment index={0} style="fade-up">
      <p>Appears on click</p>
    </Fragment>
  </Slide>
</Deck>

Local Development

To work on Decksmith itself:

git clone <repo-url> decksmith
cd decksmith
npm install
npm start

Keyboard Shortcuts

| Key | Action | | ------------------- | ------------------------ | | / Space | Next slide/fragment | | / Shift+Space | Previous slide/fragment | | / | Navigate vertical slides | | Esc | Toggle overview mode | | F | Toggle fullscreen | | S | Open speaker notes | | B / . | Pause (blackout) | | Home / End | First / last slide |

Themes

Set the theme on the <Deck> component:

<Deck theme="obsidian">

Available: obsidian (default), air, dusk, parchment, ember

Documentation

See the docs/ directory for complete documentation:

For LLMs / AI Agents

See CLAUDE.md for a structured reference designed for AI agents to read and generate presentations programmatically.

Tech Stack

License

Decksmith is released under the MIT License.