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

@liftkit-vue/core

v0.2.2

Published

Material Design 3 inspired Vue 3 component library with dynamic theming and golden-ratio design tokens

Readme

@liftkit-vue/core

The core package of LiftKit Vue — Vue 3 components, composables, and CSS design tokens powered by Material Design 3 dynamic color.

日本語版はこちら

Installation

Note: npm package is not yet published. Currently available via the monorepo workspace only.

For Nuxt projects, use @liftkit-vue/nuxt instead for auto-imports.

Usage

Theme Setup

Wrap your app with LkTheme to provide the theme context:

<script setup>
import { LkTheme } from '@liftkit-vue/core'
</script>

<template>
  <LkTheme source-color="#035eff" color-mode="auto">
    <slot />
  </LkTheme>
</template>

Props:

  • source-color — Hex color to generate the full palette from
  • color-mode'auto' (follows OS, default), 'light', or 'dark'
  • palette — Override individual palette colors

Using Components

<script setup>
import { LkButton, LkCard, LkText } from '@liftkit-vue/core'
</script>

<template>
  <LkCard material="elevated">
    <LkText font-class="title2">Hello LiftKit</LkText>
    <LkButton variant="fill" color="primary">Click me</LkButton>
  </LkCard>
</template>

Using the Theme Composable

<script setup>
import { useTheme } from '@liftkit-vue/core'

const { colorMode, setColorMode, palette } = useTheme()
</script>

Components (35+)

Layout: LkContainer, LkColumn, LkRow, LkSection, LkGrid, LkPlaceholderBlock

Typography & Display: LkHeading, LkText, LkBadge, LkIcon, LkImage, LkSticker

Interactive: LkButton, LkIconButton, LkMenuItem, LkSwitch, LkTextInput, LkSelect, LkTabs, LkTabMenu, LkTabLink, LkTabContent

Complex: LkCard, LkNavbar, LkDropdown, LkSnackbar

Theme: LkTheme, LkThemeController

Material: LkStateLayer, LkMaterialLayer

CSS Architecture

All styling uses data attributes (data-lk-component, data-lk-button-variant, etc.) and CSS custom properties.

Token patterns:

  • Sizing: --lk-size-{3xs..4xl} — golden ratio scale (φ = 1.618)
  • Theme colors: --light__primary_lkv, --dark__primary_lkv, etc.
  • Shorthand aliases: --lk-primary, --lk-onsurface, etc.

Development

pnpm build        # Build with Vite
pnpm typecheck    # Type check with vue-tsc

@liftkit-vue/core(日本語)

LiftKit Vue のコアパッケージです。Material Design 3 の動的カラーを活用した Vue 3 コンポーネント、コンポーザブル、CSS デザイントークンを提供します。

インストール

注意: npm パッケージは未公開です。現在はモノレポのワークスペース経由でのみ利用可能です。

Nuxt プロジェクトでは、自動インポート対応の @liftkit-vue/nuxt を使用してください。

使い方

テーマのセットアップ

LkTheme でアプリをラップしてテーマコンテキストを提供します:

<script setup>
import { LkTheme } from '@liftkit-vue/core'
</script>

<template>
  <LkTheme source-color="#035eff" color-mode="auto">
    <slot />
  </LkTheme>
</template>

Props:

  • source-color — パレット全体を生成するための Hex カラー
  • color-mode'auto'(OS設定に追従、デフォルト)、'light''dark'
  • palette — 個別のパレットカラーを上書き

コンポーネントの使用

<script setup>
import { LkButton, LkCard, LkText } from '@liftkit-vue/core'
</script>

<template>
  <LkCard material="elevated">
    <LkText font-class="title2">Hello LiftKit</LkText>
    <LkButton variant="fill" color="primary">Click me</LkButton>
  </LkCard>
</template>

テーマコンポーザブルの使用

<script setup>
import { useTheme } from '@liftkit-vue/core'

const { colorMode, setColorMode, palette } = useTheme()
</script>

コンポーネント(35以上)

レイアウト: LkContainer, LkColumn, LkRow, LkSection, LkGrid, LkPlaceholderBlock

タイポグラフィ・表示: LkHeading, LkText, LkBadge, LkIcon, LkImage, LkSticker

インタラクティブ: LkButton, LkIconButton, LkMenuItem, LkSwitch, LkTextInput, LkSelect, LkTabs, LkTabMenu, LkTabLink, LkTabContent

複合: LkCard, LkNavbar, LkDropdown, LkSnackbar

テーマ: LkTheme, LkThemeController

マテリアル: LkStateLayer, LkMaterialLayer

CSS アーキテクチャ

全てのスタイリングはデータ属性(data-lk-componentdata-lk-button-variant など)と CSS カスタムプロパティを使用します。

トークンパターン:

  • サイジング: --lk-size-{3xs..4xl} — 黄金比スケール(φ = 1.618)
  • テーマカラー: --light__primary_lkv--dark__primary_lkv など
  • ショートハンドエイリアス: --lk-primary--lk-onsurface など

開発

pnpm build        # Vite でビルド
pnpm typecheck    # vue-tsc で型チェック