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

@sky.ui/core

v0.0.22

Published

Sky UI web components built with Lit — 70+ components, bundler plugins, and custom elements.

Downloads

2,816

Readme

@sky.ui/core

Lit-based web components for Sky UI. Use tags such as <sky-button> and <sky-card> in any framework, or import components directly for tree-shaken bundles.

Install

npm install "@sky.ui/core"

Quote scoped names ("@sky.ui/…") — required in PowerShell. See powershell-scoped-packages.md.

Peer dependencies (install as needed for the components you use): lit, and optionally @lit-labs/motion, @lit-labs/virtualizer, @lit/context, d3, three.

Quick start

import { SkyButton, SkyCard } from '@sky.ui/core';

Register or render components in your app. In HTML:

<sky-button label="Save"></sky-button>

Only the components you import are included in production bundles when your bundler tree-shakes ESM.

Tree-shaking

  • Published as ESM with one file per component (preserveModules).
  • Import from the package root or per-component paths (@sky.ui/core/sky-button).
  • Use a production build (vite build, nuxt build, webpack production) so unused exports are dropped. Dev servers may include more for faster HMR.

Vite

import { SkyUIMainVitePlugin } from '@sky.ui/core/vite';

export default {
  plugins: [
    // Vue: auto-import <SkyButton> / <sky-button> (requires unplugin-vue-components)
    SkyUIMainVitePlugin(), // or SkyUIMainVitePlugin({ mode: 'vue' })

    // Framework-less HTML/JS: scan for <sky-*> and inject imports
    // SkyUIMainVitePlugin({ mode: 'auto-import' })

    // Whole library: SkyUIMainVitePlugin({ mode: 'auto-import', treeShake: false })
  ],
};

Vue auto-import: install unplugin-vue-components. Options include resolverOptions, dts, and componentsOptions.

Resolver only: import { SkyUIMainResolver } from '@sky.ui/core/auto-import'.

For Vue SFC wrappers or React, use @sky.ui/vue or @sky.ui/react instead.

Webpack and Rollup

Webpack

import { SkyUIMainWebpackPlugin } from '@sky.ui/core/webpack';

export default {
  plugins: [SkyUIMainWebpackPlugin()],
};

Rollup (returns an array — spread into plugins):

import { SkyUIMainRollupPlugin } from '@sky.ui/core/rollup';

export default {
  plugins: [
    ...SkyUIMainRollupPlugin(),
    // auto-import: ...SkyUIMainRollupPlugin({ mode: 'auto-import', entryHtml: 'index.html' }),
  ],
};

Manual and full-library imports

import { SkyButton, SkyCard } from '@sky.ui/core';
import '@sky.ui/core/sky-button';

// Entire catalog
import '@sky.ui/core/all';
import * as Sky from '@sky.ui/core';

Custom Elements Manifest

After building from source, component metadata is available at @sky.ui/core/custom-elements.json.

Related packages

| Package | Use when | |---------|----------| | @sky.ui/vue | Vue 3 SFC wrappers | | @sky.ui/react | React wrappers | | @sky.ui/utils | Utility CSS and PostCSS JIT | | @sky.ui/reactivity | Lightweight reactivity and template directives | | @sky.ui.pro/core | Pro-tier components |

Editor support

Install the Sky UI Components VS Code extension for completions, hover docs, and validation in HTML, Vue, and JSX.

License

Sky UI Free EULA — proprietary; not open source.