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

@pristy/pristy-libvue

v2.16.2

Published

Core library used by all Pristy applications

Readme

Pristy Libvue

Shared Vue 3 component library for the Pristy ECM suite. Provides reusable components, services, stores, composables, and plugins used across all Pristy frontend applications.

Installation

npm install @pristy/pristy-libvue

Usage

All exports use named imports:

import { alfrescoFileService, useUserStore, TreeExplorer } from "@pristy/pristy-libvue"

What's included

| Category | Examples | Count | |---|---|---| | Components | TreeExplorer, PDFComponent, DynamicContentView, CopyOrMovePopup, AdvancedSearchPanel, ChatPanel | ~45 | | Services | alfrescoFileService, alfrescoNodeService, configService, workspaceService, errorService | ~20 | | Stores (Pinia) | useUserStore, useConfigStore, useNavigationStore, useFavoritesStore, useSearchStore | ~15 | | Composables | useCodeMirror, useMarkdownPreview, useCollabEditor, useCollabWebSocket | 5 | | Pages | LoginPage, NotFoundPages, ErrorPage | 3 | | Plugins | vueKeyCloak | 1 |

See src/index.js for the full list of exports.

Peer Dependencies

These must be installed by the consuming application:

| Package | Version | |---|---| | vue | ^3.5 | | vue-i18n | ^11.3 | | vue-router | ^4.6 | | @codemirror/* | ^6.x (14 packages) | | codemirror | 6.0.2 |

Local Development

Build the library

npm install
npm run build:library

Link locally to another Pristy app

# In pristy-libvue
npm link

# In the consuming app (e.g. pristy-espaces)
npm link ../pristy-libvue
npm run dev.link      # Uses vite.config.link.js

After any change to pristy-libvue, rebuild with npm run build:library (or use npm run build:dev for watch mode with source maps).

Available scripts

| Script | Description | |---|---| | npm run build:library | Production build (ESM + UMD + CSS + .d.ts) | | npm run build:dev | Watch mode build with source maps | | npm run analyze | Bundle size analysis (opens stats.html) | | npm run lint | Lint and auto-fix with ESLint | | npm run check | Lint without fixing (CI mode) | | npm run format | Format with Prettier | | npm run test | Run tests with Vitest | | npm run coverage | Generate test coverage report |

Architecture

The library follows a Services -> Stores -> Components pattern:

  • Services (src/services/): Stateless modules handling API calls and business logic
  • Stores (src/stores/): Pinia stores managing session state
  • Components (src/components/): UI presentation consuming stores
  • Composables (src/composables/): Reusable composition functions (CodeMirror, Markdown, WebSocket)

Conventions

  • Icons: Remixicon only (ri-* classes). No PrimeIcons.
  • i18n: All user-facing strings must use $t('key'). No hardcoded text.
  • Imports: Use @/ alias for all internal imports. Never import from @/index.js internally.
  • License: Every .vue and .js file must include the AGPL-3.0 header.
  • Comments: English only.

License

AGPL-3.0 - Copyright (C) 2022 Jeci SARL