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

@ujl-framework/ui

v0.0.3

Published

UJL UI - shadcn-svelte Component Library

Readme

@ujl-framework/ui - shadcn-svelte Component Library

This package provides the base UI components (Text, Button, Input, Card, Dialog, etc.) for the UJL project based on shadcn-svelte. These elements are used both for the Crafter UI and for rendering ContentFrames.


Installation and Usage

Prerequisites

This library requires the following peer dependencies to be installed in your project:

pnpm add svelte @sveltejs/kit tailwindcss

Installation

pnpm add @ujl-framework/ui

Svelte Component Usage

<script>
	import {
		Button,
		Card,
		CardContent,
		CardHeader,
		CardTitle,
		Text,
		Heading,
		Dialog,
		DialogContent,
		DialogTriggerButton,
	} from "@ujl-framework/ui";

	// Import styles
	import "@ujl-framework/ui/styles";
</script>

<Card>
	<CardHeader>
		<CardTitle>My Card</CardTitle>
	</CardHeader>
	<CardContent>
		<Text>This is a card with a button.</Text>
		<Button>Click me</Button>
	</CardContent>
</Card>

Note: Styles are not automatically imported. You must explicitly import @ujl-framework/ui/styles in your application. In SvelteKit, this is typically done in your root +layout.svelte file.

Tools

import { PositionSpy, scrollToHash } from "@ujl-framework/ui/tools";

// Use utility functions
PositionSpy.subscribe(/* ... */);
scrollToHash(/* ... */);

Developing

Once you've installed dependencies with pnpm install, start a development server:

pnpm run dev

# or start the server and open the app in a new browser tab
pnpm run dev -- --open

Everything inside src/lib is part of the UI library all resources should be exported in the index.ts file, everything inside src/routes can be used as a showcase or preview app.

Building

To create a production version of the UI library:

pnpm run build

This will:

  • Build the SvelteKit application
  • Copy all content from src/lib to dist
  • Copy the compiled CSS assets to dist/styles/index.css for distribution
  • Package the library components using svelte-package
  • Validate the package structure with publint

Available Components

The library includes the following component categories:

  • Layout: Container, Grid, GridItem
  • Typography: Text, Heading, Highlight
  • Interactive: Button, Link
  • Overlay: Dialog, Drawer, Popover, Sheet, Tooltip, HoverCard
  • Navigation: Breadcrumb, Tabs, Accordion
  • Data Display: Table, Card, Alert, Badge, Counter
  • Forms: (Coming soon)
  • Feedback: (Coming soon)

Available Tools

  • PositionSpy: Track element positions
  • scrollToHash: Smooth scrolling to hash targets

Design System

The library includes a comprehensive design system with:

  • Flavors: Primary, Secondary, Accent, Success, Warning, Destructive, Info
  • Color System: OKLCH-based color space for better color consistency
  • Typography: Responsive text sizing and weight system
  • Spacing: Consistent spacing scale
  • Animations: Built-in animation utilities