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

@rimelight/ui

v0.0.37

Published

Rimelight Entertainment UI Library.

Readme

Rimelight UI (@rimelight/ui)

Built with Astro  

PLAYGROUND   DOCUMENTATION  

NPM Version   NPM Downloads   View on npmx   pkg.pr.new  

Rimelight UI is a comprehensive component library for Astro websites used and maintained by Rimelight Entertainment. It offers a suite of accessible and highly performant components as Astro Components and Vue Components, and is available as a free and open source project for any to use.

Features

  • Multiple Frameworks: Astro, Vue, and more with a unified usage pattern - use what suits your project best.
  • Intuitive: Simple APIs, comprehensive documentation, and convenient integrations.
  • Accessible: All components are WAI-ARIA compliant and include keyboard navigation, focus management, and screen reader support.
  • Customizable: Create your own design system by overriding styles and variants globally or per instance.
  • Performant: Fully type-safe, SEO-friendly, modern and lean dependencies, and blazing fast.

For a complete list of available components, refer to the documentation.

Installation

To use Rimelight UI in an Astro project, you need to install the package and add the integration.

  1. Install the package into your project:
# vp
vp install @rimelight/ui

# npm
npm install @rimelight/ui

# pnpm
pnpm add @rimelight/ui

# yarn
yarn add @rimelight/ui

# deno
deno add npm:@rimelight/ui

# bun
bun add @rimelight/ui
  1. Add the Rimelight UI Astro integration to your Astro configuration:
// astro.config.ts
import { ui } from "@rimelight/ui/integrations"
import { defineConfig } from "astro/config"

export default defineConfig({
  integrations: [
    ui({
      // Optional: Provide global UI overrides
      ui: {
        button: {
          defaultVariants: { variant: "primary" }
        }
      }
    })
  ]
})

Usage

Astro Components

// component.astro

---
import { RLAButton } from '@rimelight/ui/components/astro/RLAButton.astro';
---

<RLAButton label="Click Me" />

Vue Components

// component.vue

<script setup lang="ts">
import { RLVButton } from "@rimelight/ui/components/vue/RLVButton.vue"
</script>

<template>
  <RLVButton label="Click Me" />
</template>

For mixed usage please refer to the Astro documentation on using front-end frameworks.

You can add the FAQ section right toward the bottom of your README, typically just before the Contributing or Support sections.

Since GitHub and most Markdown viewers natively support the and HTML tags, they will render as interactive accordion dropdowns, keeping your README clean and compact.

Here is the exact code block to drop into your Repository README:

Markdown

Frequently Asked Questions

Useful Links

Contributing

We welcome contributions to this project and its documentation. If you are interested in contributing, please refer to our contribution guidelines.

If you would like to financially support this project, please consider sponsoring us.

Support

If you have any questions or need assistance, please feel free to reach out to us at [email protected].

License

MIT