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

@kobbejager/jsonforms-primevue

v0.8.0

Published

PrimeVue renderer set for JSON Forms

Readme

jsonforms-primevue

[!WARNING] On June 29, 2026, PrimeTek dropped the open-source MIT license for PrimeVue starting with version 5, moving the project to the commercial PrimeUI license model. That is a dumb decision, and I will not migrate to PrimeVue v5. For now I will keep developing jsonforms-primevue on PrimeVue v4, and may later switch to a PrimeVue fork (e.g. BumbleVue) or to another framework entirely.

This repository implements a PrimeVue (version ^4.4) renderer set for JSON Forms (version ^3.6).

This is work in progress and not ready for production use!

Current Status All core renderers have been migrated to PrimeVue, and many configuration options are already available. However, the simple controls don’t yet fully conform to strict JSON Schema behavior. Additional variants for several renderers are planned for the near future.

Install from npm

  1. Add the package
yarn add @kobbejager/jsonforms-primevue
# or
npm install @kobbejager/jsonforms-primevue
  1. Ensure peer dependencies are installed in your app
yarn add vue@^3.5 primevue@^4.4 primeicons@^7 @jsonforms/core@^3.6 @jsonforms/vue@^3.6
  1. Install and import a PrimeVue theme (CSS) in your app entry
yarn add @primeuix/themes
import '@primeuix/themes/aura/theme.css'
import 'primeicons/primeicons.css'
  1. Use the renderers
import { primeVueRenderers } from '@kobbejager/jsonforms-primevue'
import '@kobbejager/jsonforms-primevue/index.css'

Optional: install from GitHub tags

yarn add @kobbejager/jsonforms-primevue@github:kobbejager/jsonforms-primevue#v0.8.0
# or with semver selector to auto-allow compatible updates
yarn add @kobbejager/jsonforms-primevue@github:kobbejager/jsonforms-primevue#semver:^0.8.0

Note: release tags must include the built dist/ artifacts. If you build locally from Git, ensure your environment can run the package’s build step.

License and contributions

See the LICENSE file for details.

The code was originally based on the on the vanilla rendereres of JSON forms, which is licensed under the MIT license and copyrighted by EclipseSource Munich. Even though the renderers have been heavily modified and ported to PrimeVue, some parts of the code are still based on the vanilla renderers.

For this reason, the MIT licensed code in this repository is copyrighted partially by Kobbejager, and partially by EclipseSource Munich.

Demo app

  • Clone this repository using git, or download and extract the zip file.
  • Install dependencies using yarn or npm install
  • Run the demo app in development mode using yarn dev or npm run dev
  • Build the demo app for production using yarn build:demo or npm run build:demo (output: dist-demo/)
  • Open the browser at http://localhost:5173 when using development mode

Library build

  • Build the library package (for publishing/consumption) using yarn build or npm run build
  • Library artifacts are written to dist/