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

@urbicon-ui/sv

v8.26.0

Published

Svelte CLI (sv) community add-on for Urbicon UI — installs the blocks library and the urbicon CLI, wires the Tailwind 4 stylesheet, and hands over to the design-loop onboarding.

Readme

@urbicon-ui/sv

The Svelte CLI community add-on for Urbicon UI — one command from an empty directory (or an existing SvelteKit project) to a working, styled setup.

Beta. sv community add-ons are experimental — the add-on API may change between sv releases. This package tracks its sv peer range.

Usage

# New project — sv asks its own questions (TypeScript, Prettier, …):
bunx sv create my-app --add @urbicon-ui

# Existing SvelteKit project:
bunx sv add @urbicon-ui

Any package manager works (npx sv … likewise); non-interactive runs (CI, agents) should pre-answer Tailwind's plugin prompt: bunx sv add tailwindcss=plugins:none @urbicon-ui.

Requires SvelteKit — the add-on declines a non-Kit project. The library does not: @urbicon-ui/blocks imports neither $app/* nor @sveltejs/kit and runs in any Svelte 5 project with Vite and Tailwind 4. What is missing outside Kit is the wiring, not the compatibility — a non-Kit project owns its entry module, so no add-on can know where the stylesheet gets loaded. Do those two steps by hand: see the getting-started guide.

@urbicon-ui resolves to this package; the tailwindcss add-on is pulled in automatically as a dependency.

What it does

  • Adds @urbicon-ui/blocks (dependency) and @urbicon-ui/design (devDependency) as a caret range floored at the release this add-on shipped with — all @urbicon-ui/* packages version in lockstep.
  • Adds @import '@urbicon-ui/blocks/style/index.css'; to the app stylesheet, after Tailwind. That single import carries the design tokens and the @source directives that make Tailwind generate the components' classes — no consumer-side @source needed.
  • Points you at the next step:
bunx urbicon init --hook   # AGENTS.md agent context + the edit-time design gate

The design-loop onboarding deliberately lives in urbicon init, not here: it is idempotent, version-stamped and meant to be re-run after upgrades — things a one-shot scaffolder cannot be.

Local development

bun run build   # bundles src/index.ts → dist/index.mjs (sv stays external)
cd /path/to/test-project
bunx sv add file:/path/to/packages/sv --no-git-check

Part of the Urbicon UI monorepo; see the getting-started guide for the manual setup this add-on automates.