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

@swrdsrvrswd/payload-form-submissions-admin

v1.0.0

Published

Payload admin UI for form-submissions: readable list previews and a field/value detail table.

Downloads

28

Readme

@swrdsrvrswd/payload-form-submissions-admin

Readable admin UI for Payload's form-submissions collection (from @payloadcms/plugin-form-builder).

  • List viewsubmissionData column shows name, email, phone, and message excerpt
  • Detail view — submission fields render as a Field / Value table

Requirements

  • Payload 3.x
  • @payloadcms/plugin-form-builder

Install

npm install @swrdsrvrswd/payload-form-submissions-admin

Or link locally while developing:

cd payload-form-submissions-admin && npm run build && npm link
cd your-payload-app && npm link @swrdsrvrswd/payload-form-submissions-admin

Usage

Register after formBuilderPlugin:

import { formBuilderPlugin } from '@payloadcms/plugin-form-builder'
import { formSubmissionsAdminPlugin } from '@swrdsrvrswd/payload-form-submissions-admin'

export const plugins = [
  formBuilderPlugin({
    // your existing form-builder options
  }),
  formSubmissionsAdminPlugin({
    group: 'Content',
    preferredKeys: ['firstName', 'lastName', 'email', 'phone'],
    messageFieldKey: 'message',
    messageExcerptMax: 80,
  }),
]

Regenerate the admin import map:

npm run generate:importmap

Next.js (required)

Admin components ship as .tsx source. Add the package to transpilePackages in next.config.mjs:

const nextConfig = {
  transpilePackages: ['@swrdsrvrswd/payload-form-submissions-admin'],
}

Restart the dev server and open Admin → Form Submissions.

Options

| Option | Default | Description | |--------|---------|-------------| | group | 'Content' | Admin sidebar group | | defaultColumns | ['createdAt', 'form', 'submissionData'] | List view columns | | preferredKeys | ['firstName', 'lastName', 'email', 'phone'] | Fields used for list preview | | messageFieldKey | 'message' | Field key for message excerpt | | messageExcerptMax | 80 | Max characters for message excerpt |

How it works

This plugin patches the form-submissions collection created by the form builder plugin. It attaches custom admin field components to submissionData without replacing your form-builder configuration.

Development

npm install
npm run build

Publishing

npm login
npm run publish:public

Scoped packages publish publicly via publishConfig.access: "public". Bump version in package.json before subsequent releases.

License

MIT