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

ketekny-ui-kit

v1.0.45

Published

A Vue 3 UI component library with Tailwind CSS styling

Readme

Ketekny UI Kit

Vue 3 UI component library styled with Tailwind CSS.

Installation

  1. Install the package:
npm install ketekny-ui-kit
  1. Ensure required peer/runtime dependencies exist in your app:
npm install vue tailwindcss postcss autoprefixer

If your project already has Vue + Tailwind configured, you can skip step 2.

CI Publish Auth (NPM Token)

To publish from GitLab CI, create an npm granular token and store it in the runner/project CI variables.

1. Create npm token

  1. Open npm -> Access Tokens -> Generate New Token (Granular).
  2. Set permissions to Read and write.
  3. Under package access, allow ketekny-ui-kit.
  4. Enable Bypass two-factor authentication (2FA).
  5. Create token and copy it (shown only once).

2. Save token in GitLab CI/CD variables

  1. Open GitLab project -> Settings -> CI/CD -> Variables.
  2. Add variable:
  • Key: NPM_TOKEN
  • Value: <your npm token>
  • Type: Variable
  • Masked: true
  • Protected: true (if publishing only from protected branches, e.g. main)
  1. Save and rerun pipeline.

3. Verify runner/tag

  • Ensure the runner used by publish jobs has the required tag (currently front).
  • Ensure the project can use that runner.

Tailwind Setup (Required)

Use the provided Tailwind preset so semantic colors and component color tokens are always available.

tailwind.config.js (ESM)

import tailwindPreset from "ketekny-ui-kit/tailwind-preset.js";

/** @type {import('tailwindcss').Config} */
export default {
  presets: [tailwindPreset],
  content: [
    "./index.html",
    "./src/**/*.{vue,js,ts,jsx,tsx}",
    "./node_modules/ketekny-ui-kit/**/*.{vue,js,ts,jsx,tsx}",
  ],
};

tailwind.config.cjs (CommonJS)

const tailwindPreset = require("ketekny-ui-kit/tailwind-preset.js").default;

/** @type {import('tailwindcss').Config} */
module.exports = {
  presets: [tailwindPreset],
  content: [
    "./index.html",
    "./src/**/*.{vue,js,ts,jsx,tsx}",
    "./node_modules/ketekny-ui-kit/**/*.{vue,js,ts,jsx,tsx}",
  ],
};

Notes:

  • The preset contains the semantic color definitions and safelist patterns used by dynamic classes (alerts/toasts/button intents).
  • If you replace safelist in your own config, keep equivalent patterns or dynamic semantic classes may be purged.

App CSS Setup

Import the kit stylesheet in your app entry (main.js / main.ts):

import "ketekny-ui-kit/styles.css";

Vue Setup

main.js / main.ts example:

import { createApp } from "vue";
import App from "./App.vue";
import "./style.css";

import {
  kButton,
  kInput,
  kSelect,
  kDateSelector,
  kToggle,
  toastPlugin,
  confirmPlugin,
  alertPlugin,
  inputDialogPlugin,
  tooltipPlugin,
} from "ketekny-ui-kit";

const app = createApp(App);

app.component("kButton", kButton);
app.component("kInput", kInput);
app.component("kSelect", kSelect);
app.component("kDateSelector", kDateSelector);
app.component("kToggle", kToggle);

app.use(toastPlugin);
app.use(confirmPlugin);
app.use(alertPlugin);
app.use(inputDialogPlugin);
app.use(tooltipPlugin);

app.mount("#app");

Available Plugins

  • toastPlugin adds $toast (success, error, warning, info, show)
  • confirmPlugin adds $confirm(options)
  • alertPlugin adds $alert.success|warning|error|info(...)
  • inputDialogPlugin adds $prompt(options)
  • tooltipPlugin registers v-tooltip

Available Exports

Components

  • kMessage
  • kButton
  • kChip
  • kCode
  • kDialog
  • kDrawer
  • kInput
  • kDateSelector
  • kToolbar
  • kSelect
  • kTable
  • kTabs
  • kToggle
  • kUploader
  • kEditor
  • kSpinner
  • kSelectButton
  • kDatatable
  • kIcon
  • kMenu
  • kTags
  • kSearch
  • kArrayList
  • kSkeleton
  • kAppHeader
  • kAppFooter
  • kAppMain
  • kHero

Tailwind preset export

  • tailwindPreset

License

ISC

Links