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

@alpha-singularity-llc/seasonal-decoration

v0.1.2

Published

Mongolian seasonal site decorations for React — Naadam, New Year, Republic Day, and more. Asia/Ulaanbaatar calendar.

Readme

@alpha-singularity-llc/seasonal-decoration

Mongolian seasonal site decorations for React — corner ribbons, snowfall, and a New Year tree. Dates use Asia/Ulaanbaatar. Non-interactive (pointer-events-none), respects prefers-reduced-motion.

Holidays included:

  • New Year — snowfall + tree (Dec 20 – Jan 5)
  • Naadam (Jun 25 – Jul 20)
  • School year (Aug 25 – Sep 10)
  • Chinggis Khaan Day (Nov 7 – Nov 20)
  • Republic Day (Nov 19 – Dec 3)

Install

pnpm add @alpha-singularity-llc/seasonal-decoration

Peer dependencies: react and react-dom (18+).

Usage

1. Import styles

Tailwind CSS v4 (globals.css):

@import "tailwindcss";
@import "@alpha-singularity-llc/seasonal-decoration/styles.css";

@source "../node_modules/@alpha-singularity-llc/seasonal-decoration/dist/**/*.js";

Tailwind CSS v3 (tailwind.config.ts):

export default {
  content: [
    './app/**/*.{js,ts,jsx,tsx}',
    './node_modules/@alpha-singularity-llc/seasonal-decoration/dist/**/*.js',
  ],
};

And in your global CSS or layout:

import '@alpha-singularity-llc/seasonal-decoration/styles.css';

2. Add to layout

Next.js App Router — use a small client wrapper (recommended):

// components/seasonal-decoration.tsx
'use client';

import { SeasonalDecoration } from '@alpha-singularity-llc/seasonal-decoration';

export function SiteSeasonalDecoration() {
  return <SeasonalDecoration />;
}
// app/layout.tsx
import { SiteSeasonalDecoration } from '@/components/seasonal-decoration';

export default function RootLayout({ children }) {
  return (
    <html>
      <body>
        <SiteSeasonalDecoration />
        {children}
      </body>
    </html>
  );
}

Preview a specific date (dev / QA)

Set in .env.local (do not use in production unless intentional):

NEXT_PUBLIC_SEASONAL_DECORATION_PREVIEW_DATE=2026-11-14

Format: YYYY-MM-DD in Ulaanbaatar calendar.

Local preview (this repo)

Run the built-in Vite preview app — hot-reloads from src/:

pnpm install
pnpm preview

Opens http://localhost:5173 with preset buttons (Naadam, Republic Day, New Year, etc.). Switch seasons via the toolbar or ?date=2026-11-26 in the URL. Use ?date=live for today in Asia/Ulaanbaatar.

Optional default in repo root .env:

VITE_SEASONAL_DECORATION_PREVIEW_DATE=2026-07-11

Releasing

  1. Bump version in package.json in your PR.
  2. Merge to main (or push a tag — workflow runs on relevant path changes).
  3. GitHub Actions publishes via npm Trusted Publishing.

First release only: publish once from your machine — Trusted Publishing cannot create a brand-new package on npm:

pnpm build
npm publish --access public

Then link Trusted Publishing on the package settings page (asg-llc-team/seasonal-decoration, workflow publish.yml).

Ensure npm Trusted Publishing matches: repo asg-llc-team/seasonal-decoration, workflow publish.yml, environment production (must match the workflow job environment).

License

MIT © Alpha Singularity LLC