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

bindrunes

v4.1.0

Published

Svelte 5 component library for B2B SaaS applications — 234 components, 25 composables, three-axis design system

Readme

bindrunes

CI npm version license

Svelte 5 component library for B2B SaaS. Server-first rendering, responsive hybrid, 234 components, 25 composables.

Quick Start

bun add bindrunes svelte tailwindcss lucide-svelte svelte-sonner
/* app.css */
@import "tailwindcss";
@plugin "bindrunes/tailwind";
@import "bindrunes/styles/global.css";
<!-- +layout.svelte -->
<script lang="ts">
  import "../app.css";
  import { ThemeProvider } from "bindrunes";
  let { children } = $props();
</script>

<ThemeProvider themeDefault="editorial" densityDefault="comfortable">
  {@render children()}
</ThemeProvider>
<!-- +page.svelte -->
<script lang="ts">
  import { Button, Card } from "bindrunes";
</script>

<Card variant="glass" responsive>
  <h2>Welcome</h2>
  <Button variant="primary">Get Started</Button>
</Card>

Features

  • Server-first — All components SSR-safe. Server utilities for theme/density resolution from request context.
  • Responsive hybrid — CSS container queries + fluid tokens for zero-JS responsiveness. useViewport() for JS breakpoints.
  • Mobile gesturesuseSwipe(), useLongPress(), useHaptic() composables. BottomSheet and SwipeableList components.
  • Motion system<Transition>, <AnimatePresence>, <Stagger>, <PageTransition>, scroll-reveal CSS.
  • Runtime optimizationuseMemo(), useWorker(), useLazyLoad() composables. CSS containment on components.
  • Tree-shakeable — Split entry points: bindrunes/data, bindrunes/forms, bindrunes/auth for lazy loading.
  • Three-axis design system — Theme (color), aesthetic (form), density (spacing). Any combination works.
  • Svelte 5 runes$state, $derived, $effect only. No legacy stores.
  • 4-layer architecture — Primitives → Layouts → Domains → Templates.
  • 10 domain categories — Auth, Calendar, Chat, Data, E-commerce, Landing, Marketing, Media, Portfolio, Settings.
  • Agentic copilot UI — LLM chat components: message lists, tool panels, streaming indicators.
  • OKLCH color space — 6 curated themes: editorial, dracula, nord, catppuccin, rose-pine, github.
  • 7 aesthetics — minimal, glass, bento, expressive, neon, brutalist, organic.
  • Valibot validation — Lightweight, tree-shakeable schema validation.

Documentation

| Guide | Description | |-------|-------------| | Getting Started | Install, setup, first component | | Components | Component reference | | Composables | Reactivity, data, forms, auth | | Design System | Themes, aesthetics, density | | SSR Guide | Server-side rendering, progressive hydration | | Architecture | 4-layer hierarchy, file structure | | Agentic | LLM chat kernel and copilot UI | | Security | Token storage, redirects, CSRF | | Testing | Vitest conventions and helpers | | Migration v2→v3 | Breaking changes and upgrade guide | | bindrunes-kit | SvelteKit meta-framework |

Export Paths

| Path | What | |------|------| | bindrunes | Primitives, composables, utilities, types | | bindrunes/server | SSR-safe utilities (no runes, no browser APIs) | | bindrunes/responsive | Viewport, gesture, haptic, motion composables | | bindrunes/motion | Transition, AnimatePresence, Stagger, PageTransition | | bindrunes/data | Data layer (useQuery, useMutation, useTable) — lazy-loadable | | bindrunes/forms | Form layer (useForm, useWizard) — lazy-loadable | | bindrunes/auth | Auth layer (useAuth, useAccess) — lazy-loadable | | bindrunes/layouts | Layouts + templates | | bindrunes/domains/<name> | Domain components (e.g. bindrunes/domains/auth) | | bindrunes/agentic | Agentic chat kernel | | bindrunes/tailwind | Tailwind CSS v4 plugin | | bindrunes/styles/* | Theme and global CSS | | bindrunes/i18n/* | Translation dictionaries |

Development

bun install           # Dependencies
bun run dev           # Watch mode
bun run build         # Build library
bun run test          # Run tests
bun run lint          # Lint check

License

MIT