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

@flitsmeister/design-system

v2.2.1

Published

Flitsmeister design system and demo site

Readme

Flitsmeister Design System

This project serves two main purposes:

  1. Dev Docs Site: A documentation and demo site for developing and previewing the design system.
  2. Library Use: A consumable library of Vue components and design tokens for use in other projects.

Consuming the Design System as a Library

1. Using Design Tokens (CSS)

Design tokens are exported as platform-specific files in tokens/schema_exports/. For easier consumption, the package maps these files to the themes/ export path (see the exports field in package.json).

How to import CSS tokens:

  • Choose the appropriate CSS file for your schema (e.g., fm-design-system.css) and import it using the themes/ alias:

    import '@flitsmeister/design-system/themes/fm-design-system/fm-design-system.css';
  • This will provide all color, spacing, and other design tokens as CSS custom properties. You can use these variables directly in your own CSS or with Tailwind.

Note: No bundled main.css is provided. You must import the relevant CSS export(s) for your use case.

2. Using Vue Components

You can import individual Vue components directly from the package:

import { fmxButton, fmxInput } from "@flitsmeister/design-system";

These are standard Vue 3 single-file components. Register and use them in your app as you would any other Vue component.


About the Design System

  • Provides Flitsmeister design system colors, typography, buttons, icons, and input components.
  • Design tokens are managed and exported from Figma, with automated scripts generating platform-specific outputs (CSS, iOS JSON, Android XML, etc.).
  • See the /tokens/schema_exports/ directory for all available exports.

Automated Design Token Export Workflow

  1. Source of Truth: All design tokens are exported from Figma as JSON and stored in tokens/schema_sourcefiles/.
  2. Automated Exports: Run tokens/scripts/export-tokens.js to generate fully resolved, platform-specific files in tokens/schema_exports/{schema}/.
  3. Schema Index & Documentation: The /schemas page in the dev site lists all schemas and export formats with download links.
  4. Static File Serving: All schema sourcefiles and exports are served as static files for easy download and integration.
  5. Best Practices: Never edit generated files by hand. Always update the Figma export and re-run the export script to propagate changes.