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

@lupinum/ginko-cms

v0.1.3

Published

Self-hosted CMS for Nuxt teams building structured websites with Ginko

Readme

@lupinum/ginko-cms

Nuxt module and CLI for Ginko CMS.

This package mounts the Studio UI, validates the CMS bridge, wires the public content provider, handles Tailwind v4 source registration, and exposes the ginko-cms command used to initialize and validate a host app.

Install

Install the CMS-facing packages in the Nuxt host app:

pnpm add @lupinum/ginko-content @lupinum/ginko-cms @lupinum/ginko-cms-convex @convex-dev/better-auth better-auth
pnpm add -D convex

Register the modules:

export default defineNuxtConfig({
  modules: ['@lupinum/ginko-content', '@lupinum/ginko-cms'],
})

Setup

Generate the host-owned Convex bridge files and check them:

pnpm exec ginko-cms init
pnpm exec ginko-cms doctor

The CLI manages convex/auth.ts, convex/auth.config.ts, convex/http.ts, convex/schema.ts, convex/ginkoCmsMcp.ts, convex/ginkoCms/*, and the Ginko CMS component registration in convex/convex.config.ts.

Before deploying or pushing contracts, provide Convex admin auth and the generated bridge forwarding secret:

pnpm exec convex deployment token create ginko-cms-local-admin --save-env .env.local
FORWARDING_KEY="$(openssl rand -base64 32)"
printf "\nCONVEX_IDENTITY_FORWARDING_KEY=%s\n" "$FORWARDING_KEY" >> .env.local
pnpm exec convex env set CONVEX_IDENTITY_FORWARDING_KEY "$FORWARDING_KEY"

Deploy the generated Convex functions and install collection contracts:

pnpm exec ginko-cms deploy

pnpm exec ginko-cms deploy runs the bridge check, the default local Convex deploy command, and collection contract sync in the required order. Use pnpm exec ginko-cms deploy --check for CI validation that must not run a Convex deploy.

pnpm exec ginko-cms doctor is the canonical local and CI validation command. pnpm exec ginko-cms bridge check and pnpm exec ginko-cms bridge inspect are maintainer diagnostics for generated files and managed edits.

What It Owns

  • Studio routes, layout, and runtime components.
  • CMS setup CLI commands.
  • Host bridge manifest and generated-file validation.
  • Filesystem migration helpers.
  • Public CMS provider integration.
  • Tailwind v4 integration for the CMS UI.

The Convex component implementation lives in @lupinum/ginko-cms-convex. The framework-neutral contract types live in @lupinum/ginko-cms-contract.

Scope

Generated host files should stay thin and import package-owned bridge factories from public @lupinum/ginko-cms/* subpaths. Keep app-specific Better Auth provider setup in convex/auth.config.ts and app tables in convex/schema.ts.

See the workspace docs for environment variables, next collection steps, collection changes, CMS config helpers, migration recipes, Tailwind/theming notes, and release-candidate validation.

For agent-assisted setup, debugging, or maintenance, use the repo-local Ginko CMS Codex skill.

License

MIT