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

dts-themekit-studio

v0.1.3

Published

A white-label theming studio for a card-centric ERP, built with **real `@mui/material` components** driven by a **token system** (`createTheme` + an augmented `theme.tokens`). Everything you change in the studio re-themes the entire app live — and the stu

Readme

ThemeKit Studio — Material UI Edition

A white-label theming studio for a card-centric ERP, built with real @mui/material components driven by a token system (createTheme + an augmented theme.tokens). Everything you change in the studio re-themes the entire app live — and the studio itself.

What's inside

mui-themekit/
├─ index.html              # Vite entry + Google Fonts
├─ package.json
├─ vite.config.ts
├─ tsconfig*.json
└─ src/
   ├─ main.tsx             # React root + StudioProvider
   ├─ settings.ts          # Settings type, DEFAULTS, every option list
   ├─ theme.ts             # ★ the token system: Settings -> MUI createTheme + theme.tokens
   ├─ store.tsx            # StudioProvider (state) -> ThemeProvider
   ├─ data.ts              # sample app content + theme-aware color helpers
   ├─ export.ts            # streamlined ZIP export + single-theme download + import (MUI theme / CSS vars / Tailwind / JSON / brand guide / .themekit.json)
   ├─ ThemeStudio.tsx      # the studio rail (all controls, real MUI inputs)
   ├─ screens.tsx          # 9 screens as MUI components (Login, Dashboard, Operations,
   │                       #   Cameras, Reports, Orders, Form, Components, Settings)
   └─ App.tsx              # shell: studio rail + app frame (AppBar, sidebar, router, toast)

The token system is the important part: buildTheme(settings) in src/theme.ts turns the flat Settings object into a genuine MUI theme. Standard design decisions go into the normal MUI slots (palette, shape, typography, components), and everything MUI doesn't model (overlay surfaces, chart palette, card-style/header, status intensity, density, studio chrome) goes into a typed theme.tokens extension that components read via useTheme().

Run it on your local PC

You need Node.js 18+ (includes npm). Then:

cd mui-themekit
npm install        # one-time: downloads React + MUI + Vite
npm run dev        # starts dev server, opens http://localhost:5173

That's it — edit any file and it hot-reloads.

Production build / deploy

npm run build      # outputs static files to mui-themekit/dist/
npm run preview    # serve the built dist/ locally to verify

dist/ is a plain static bundle — host it anywhere (Nginx, Apache, GitHub Pages, Netlify, Vercel, an S3 bucket, or npx serve dist).

Using an exported theme in your own app

Export downloads a single *-theme-package.zip containing every asset (*-theme.js, CSS vars, Tailwind config, tokens JSON, brand-guide, and a round-trippable *.themekit.json). Download (in Saved Themes) saves just the current theme as one .themekit.json; each saved chip has its own download icon. Import loads any .themekit.json back in and applies it live. In a real MUI app:

import { ThemeProvider, CssBaseline } from '@mui/material';
import { theme } from './nexus-erp-theme';   // the exported file

<ThemeProvider theme={theme}><CssBaseline /><App /></ThemeProvider>

Notes

  • Fonts load from Google Fonts via <link> in index.html (needs internet on first paint). To go fully offline, self-host the font files and update the link.
  • Custom logo/login-image upload from the original HTML build is represented here as URL fields; wiring a file picker is a small addition if you need it.