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

dobruniaui-vue

v2.2.1

Published

Modern Vue 3 UI component library built with TypeScript and Vite

Readme

🎨 DobruniaUI for Vue 3

Modern Vue 3 UI component library

npm version License: MIT GitHub

DobruniaUI is a comprehensive Vue 3 component library designed with a focus on modern design, performance, and developer experience.

For the always up-to-date generated reference (components, tokens, reusable classes, and named types), use LLM_INSTRUCTIONS.md.

🎮 Demo

Explore all components in the interactive playground →

☕ Support

You can support the development of the library:

Boosty

UI library for Vue 3.

Install

npm i dobruniaui-vue

Usage

import { createApp } from 'vue';
import DobruniaUI from 'dobruniaui-vue';
import 'dobruniaui-vue/styles.css';

const app = createApp(App);
app.use(DobruniaUI);

Or per-component:

import { DbrButton, DbrInput } from 'dobruniaui-vue';

Tree Shaking

Tree shaking is supported for ESM builds. To get the smallest bundle, use named imports instead of the default plugin:

import { DbrButton, DbrInput } from 'dobruniaui-vue';

The package is marked as side‑effect free (except styles.css) so bundlers can drop unused components.

Using app.use(DobruniaUI) registers all components and will include the full library in your bundle.

Utility And Primitive Classes

Full up-to-date class list is generated in LLM_INSTRUCTIONS.md (Reusable Classes From base.css section).

Examples:

<span class="dbru-text-sm dbru-text-main">Main text</span>
<span class="dbru-text-xs dbru-text-muted">Meta info</span>
<span class="dbru-text-sm dbru-text-on-primary">Text on primary bg</span>
<div class="dbru-surface">Surface block</div>
<button
  class="dbru-btn dbru-btn--primary dbru-size-md dbru-text-base dbru-text-on-primary"
>Action</button>
<button class="dbru-btn dbru-btn--ghost dbru-size-sm dbru-text-sm dbru-text-main">Cancel</button>

Design Tokens

Full up-to-date token list is generated in LLM_INSTRUCTIONS.md (Design Tokens From tokens.css section).

Dark theme overrides color tokens via .dbru-theme-dark.

For the full up-to-date list of available theme classes and theme files, see LLM_INSTRUCTIONS.md (Themes section).

Storybook Docs

Storybook is configured with autodocs. Start it with:

npm run storybook

Generate static docs:

npm run build-storybook

Generate one Markdown file with LLM instructions (how LLM should work with this library) and all component props:

npm run docs:llm

Output file: LLM_INSTRUCTIONS.md (root level, next to README.md)

Components

Full up-to-date component list is generated in LLM_INSTRUCTIONS.md (Components And Props section).