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

@krollins/blueprint

v0.2.3

Published

A highly portable and customizable component library built on Lit

Readme

@krollins/blueprint

A highly portable and customizable web component library built on Lit.

Installation

npm install @krollins/blueprint

Quick Start

<script type="module">
  import '@krollins/blueprint';
</script>

<bp-button variant="primary">Click me</bp-button>

Or import individual components for smaller bundles:

// Import the theme CSS (design tokens, fonts, colors)
import '@krollins/blueprint/dist/index.css';

// Import only the components you need
import '@krollins/blueprint/button';
import '@krollins/blueprint/card';
import '@krollins/blueprint/heading';

Components

| Component | Tag | Description | | ------------ | ------------------- | ---------------------------------------------------------- | | Button | <bp-button> | Primary, secondary, outline, ghost, danger, loading states | | Input | <bp-input> | Text input with labels, validation, help text | | Textarea | <bp-textarea> | Multi-line text input with auto-resize | | Checkbox | <bp-checkbox> | Standard and indeterminate states | | Radio | <bp-radio> | Radio buttons and radio groups | | Switch | <bp-switch> | Boolean toggle control | | Select | <bp-select> | Dropdown selection | | Multi-select | <bp-multi-select> | Dropdown with multiple selection | | Combobox | <bp-combobox> | Searchable dropdown | | Number Input | <bp-number-input> | Increment/decrement numeric input | | Slider | <bp-slider> | Numeric range selection | | Date Picker | <bp-date-picker> | Calendar-based date selection | | Time Picker | <bp-time-picker> | Time input with dropdown | | File Upload | <bp-file-upload> | Drag-and-drop file selection | | Color Picker | <bp-color-picker> | Color selection tool | | Icon | <bp-icon> | SVG icon wrapper with sizing | | Badge | <bp-badge> | Status indicators and counts | | Tag | <bp-tag> | Removable labels and filters | | Alert | <bp-alert> | Informational, success, warning, error messages | | Notification | <bp-notification> | Non-blocking alerts | | Card | <bp-card> | Content container with header, body, footer slots | | Modal | <bp-modal> | Overlay dialogs with focus trapping | | Drawer | <bp-drawer> | Slide-in panels | | Tooltip | <bp-tooltip> | Hover/focus information popups | | Popover | <bp-popover> | Rich content popovers | | Dropdown | <bp-dropdown> | Generic popover trigger | | Menu | <bp-menu> | Dropdown and context menus | | Tabs | <bp-tabs> | Tabbed content navigation | | Accordion | <bp-accordion> | Collapsible content sections | | Breadcrumb | <bp-breadcrumb> | Navigation path indicator | | Pagination | <bp-pagination> | Page navigation controls | | Stepper | <bp-stepper> | Multi-step form navigation | | Table | <bp-table> | Data tables with sorting, selection | | Tree | <bp-tree> | Hierarchical data display | | Progress | <bp-progress> | Determinate and indeterminate progress | | Spinner | <bp-spinner> | Loading indicator | | Skeleton | <bp-skeleton> | Loading placeholders | | Avatar | <bp-avatar> | User/entity image with fallback initials | | Divider | <bp-divider> | Visual separator | | Heading | <bp-heading> | Typography component for headings | | Text | <bp-text> | Text/paragraph component | | Link | <bp-link> | Hyperlink component |

Design Tokens

Blueprint uses CSS custom properties for theming. All tokens use the --bp- prefix:

/* Colors */
--bp-color-primary
--bp-color-danger

/* Spacing */
--bp-spacing-xs, --bp-spacing-sm, --bp-spacing-md, --bp-spacing-lg

/* Typography */
--bp-font-size-sm, --bp-font-weight-bold

/* Borders & Shadows */
--bp-border-radius-sm, --bp-shadow-md

Import the default theme CSS:

import '@krollins/blueprint';
// Theme CSS is automatically included

Browser Support

Blueprint targets modern browsers that support web components:

  • Chrome/Edge 90+
  • Firefox 90+
  • Safari 15+

Documentation

Full documentation and interactive examples:

License

MIT