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

@enos5/enos-vue

v1.3.16

Published

Shared Vue 3 UI components from Enos, packaged as the Jetstream workspace inside the monorepo.

Readme

@enos5/enos-vue

Shared Vue 3 UI components from Enos, packaged as the Jetstream workspace inside the monorepo.

Requirements

  • Node.js 20+
  • npm

Install

From the workspace root:

npm install

Build this package:

npm run build -w @enos5/enos-vue

Component Documentation Sandbox

This workspace includes a dedicated docs playground for the component library. It renders each component with a live example and generates editable prop controls from the component prop definitions.

Run it locally from the workspace root:

npm run docs:dev -w @enos5/enos-vue

Build the docs site:

npm run docs:build -w @enos5/enos-vue

Use In Another Project

Install the published package:

npm install @enos5/enos-vue

This package expects these peer dependencies in the consuming app:

  • vue
  • @inertiajs/vue3 (^2.0.0 or ^3.0.0)
  • @heroicons/vue
  • vue-i18n

Rich text support uses TinyMCE and is bundled as a regular dependency in this library.

You can register everything globally:

import { createApp } from 'vue'
import App from './App.vue'
import { EnosVue } from '@enos5/enos-vue'

createApp(App).use(EnosVue).mount('#app')

Or import individual components:

import { PrimaryButton, TextInput } from '@enos5/enos-vue'

DateInput defaults to English locale behavior. Pass locale to override that, and note that native browser date picker UI remains browser-controlled, with lang used as the locale hint.

If a consuming app wants to load the package stylesheet explicitly, use the stable stylesheet entry:

import '@enos5/enos-vue/styles.css'

This avoids importing from dist directly and is useful when an app wants tighter control over stylesheet load order in development.

Publish To npm

Before publishing, build the package and verify the tarball:

npm run build -w @enos5/enos-vue
npm pack --dry-run -w packages/jetstream

Then bump the version in packages/jetstream/package.json, commit the change, and publish the workspace:

npm publish -w packages/jetstream

If you are releasing both packages together, also update packages/default/package.json, run the root npm run build, and publish packages/default after verifying its tarball with:

npm pack --dry-run -w packages/default
npm publish -w packages/default

Playground Themes

The docs playground includes a theme switcher in the sidebar. It persists the selected theme and lets you toggle between:

  • Jetstream, which shows the current component catalog in this workspace
  • Default, which points at the mirrored @enos5/enos-vue-default package implementation