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

jsgd-vue-pack

v1.2.5

Published

[![NPM Version](https://img.shields.io/npm/v/jsgd-vue-pack?style=flat-square)](https://www.npmjs.com/package/jsgd-vue-pack) [![Build Status](https://img.shields.io/github/actions/workflow/status/JSGDevelompent/jsgd-vue-pack/main.yml?branch=main&style=flat

Readme

jsgd-vue-pack

NPM Version Build Status License

jsgd-vue-pack is a comprehensive Vue 3 component library, built with TypeScript and Vite.
It is designed to accelerate development by providing a rich set of ready-to-use UI components, ranging from complex data tables and modal forms to various types of input fields.


✨ Features

  • Complete Component Collection: Includes TabelData, FormModal, FormFieldRenderer, and more than 30+ other UI and input components.
  • TypeScript First: Fully built with TypeScript for type-safety and a great development experience with auto-complete support.
  • Highly Configurable: Easily customize the behavior of the library through a jsgd.config.ts file.
  • Internationalization (i18n): Built-in support for multiple languages including English, Indonesian, Spanish, French, German, and more.
  • Modern Automation: Uses a custom Vite plugin to auto-generate module entries, making maintenance easier.
  • Styling with UnoCSS: Integrated with UnoCSS for fast and efficient utility-first styling.

🚀 Installation

Install this package using npm:

npm install jsgd-vue-pack

Usage

Here’s how to integrate and use jsgd-vue-pack in your Vite + Vue 3 project.

1. Configure the Plugin

Update your vite.config.ts file to include the Vite plugin from this library.

// vite.config.ts
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import JsgdVuePack from 'jsgd-vue-pack/vite' // <-- Import Vite plugin

export default defineConfig({
  plugins: [
    vue(),
    JsgdVuePack(), // <-- Use the plugin
  ],
})

2. Register Global Components

In your main entry file (main.ts), use the Vue plugin to register all components globally.

// main.ts
import { createApp } from 'vue'
import App from './App.vue'
import JsgdComponents from 'jsgd-vue-pack/vue' // <-- Import Vue plugin

const app = createApp(App)

app.use(JsgdComponents) // <-- Register all components
app.mount('#app')

3. Customization (Optional)

Create a jsgd.config.ts file in your project root to customize behavior, e.g., adding new languages.

// jsgd.config.ts
import { defineConfig } from 'jsgd-vue-pack/config'

export default defineConfig({
  i18n: {
    // Add or override languages
    languages: [
      {
        lang: 'id',
        config: {
          // ...Indonesian language config here
        },
      },
    ],
  },
})

4. Using Components

Now you can directly use components inside your .vue files.

<template>
  <div>
    <TabelData :base="tableBaseConfig" :feature="tableFeatures" :endpoints="apiEndpoints" />
  </div>
</template>

<script setup lang="ts">
// Import components manually if you don’t want global registration
// import { TabelData } from 'jsgd-vue-pack';

// Config for TabelData
const tableBaseConfig = {
  // ...
}
const tableFeatures = {
  // ...
}
const apiEndpoints = {
  // ...
}
</script>

📦 Available Components

This library covers a wide range of component categories, including:

  • Data Display: TabelData, FieldDetailRenderer, BaseImage, ModalDetailData
  • Forms & Modals: FormModal, FormFieldRenderer
  • Feedback: AlertApp, Loader, WarningForm
  • Inputs: TextInput, NumberInput, ImageInput, ColorPicker, TextAreaQuill, ComboboxComponent, TagInput, and many more.

📜 License

This project is released under a custom license. Please see the LICENSE file for full details.

  • Compiled Software (Build/Dist): Free to use and modify for personal or internal purposes.
  • Original Source Code: All rights reserved. Viewing, modifying, or redistributing the original source code without written permission is strictly prohibited.

⚖️ Third-Party Licenses

This project utilizes third-party open-source software. The licenses for these dependencies are available in the THIRD_PARTY_LICENSES.md file.


🧑‍💻 Author

Developed by JSGDevelompent.