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

wp-typia

v0.28.1

Published

Canonical CLI package for wp-typia scaffolding and project workflows

Downloads

998

Readme

wp-typia

Canonical CLI package for wp-typia.

Use this package for new projects:

  • npx wp-typia create my-block
  • bunx wp-typia create my-block
  • curl -fsSL https://github.com/imjlk/wp-typia/releases/latest/download/install-wp-typia.sh | sh
  • npx wp-typia create my-plugin --template workspace
  • npx wp-typia create my-plugin --template workspace --profile plugin-qa
  • npx wp-typia create my-books --template query-loop --query-post-type book

The published package executes through the Node-first CLI runtime. bunx is a supported package-runner invocation, not a requirement for npm-installed commands.

Generated scaffolds target WordPress 7.0 for Tested up to plugin headers by default. Pass --wp-version 6.9 to restore the legacy 6.9 scaffold target; the Requires at least header remains tied to the selected feature hard floor. Use wp-typia doctor --wp-version-check to validate workspace headers against generated block, ability, and AI feature metadata.

Extend an existing workspace with:

  • wp-typia add block counter-card --template basic
  • wp-typia add integration-env local-smoke --wp-env --release-zip --service docker-compose
  • wp-typia add style callout-emphasis --block counter-card
  • wp-typia add transform quote-to-counter --from core/quote --to counter-card
  • wp-typia add binding-source hero-data
  • wp-typia add binding-source hero-data --block counter-card --attribute headline
  • wp-typia add rest-resource snapshots --namespace my-plugin/v1 --methods list,read,create
  • wp-typia add rest-resource snapshots --namespace my-plugin/v1 --methods read,update --route-pattern '/snapshots/(?P<id>[\d]+)' --permission-callback my_plugin_can_manage_snapshots
  • wp-typia add rest-resource external-record --manual --namespace legacy/v1 --method GET --auth authenticated --path '/records/(?P<id>[\d]+)'
  • wp-typia add rest-resource integration-settings --manual --namespace my-plugin/v1 --method POST --secret-field apiKey
  • wp-typia add post-meta integration-state --post-type post --type IntegrationStateMeta
  • wp-typia add ability review-workflow
  • wp-typia add ai-feature brief-suggestions --namespace my-plugin/v1
  • wp-typia add editor-plugin review-workflow --slot sidebar
  • wp-typia add editor-plugin seo-notes --slot document-setting-panel
  • wp-typia add hooked-block counter-card --anchor core/post-content --position after

wp-typia <project-dir> remains available as a backward-compatible alias to wp-typia create <project-dir> when <project-dir> is the only positional argument.

Configuration files:

  • wp-typia loads ~/.config/wp-typia/config.json, .wp-typiarc, .wp-typiarc.json, then package.json#wp-typia; later sources override earlier sources
  • --config <path> is an explicit override loaded after the default sources, relative to the current working directory unless absolute
  • config files use a strict schema: unknown keys are errors rather than warnings or stripped values, so typos fail near the source config file
  • object values are deep-merged, while arrays such as mcp.schemaSources replace earlier arrays instead of concatenating
  • projects can declare block API compatibility intent with wordpress.minVersion, wordpress.testedVersions, compatibility.strict, and compatibility.allowUnknownFutureKeys; future Supports, Variations, and Bindings helpers use those values for version-aware diagnostics

Compatibility notes:

  • @wp-typia/project-tools is the canonical programmatic project orchestration package
  • the published CLI ships a built dist runtime, and the canonical Node bin supports create, add, migrate, doctor, sync, skills, complete, the legacy completions alias, mcp, --version, --help, and template inspection without requiring a locally installed Bun binary
  • Bun remains supported for repository development, tests, and builds, while Node is the canonical npm runtime for the published CLI
  • when you request machine-readable output with --format json, CLI failures now include a stable error.code field so wrappers and CI can branch without parsing English text
  • the stable machine-handled branching key is error.code. Structured context like error.command, error.kind, and error.tag may also be useful to consumers, while free-form text like error.message, error.summary, and error.detailLines stays human-facing guidance and can evolve without notice
  • standalone release assets are published per platform together with checksum manifests and install scripts: install-wp-typia.sh for macOS/Linux and install-wp-typia.ps1 for Windows
  • internal runtime-bridge helper modules are implementation details; integrations should target the CLI or @wp-typia/project-tools, not CLI internals

Maintainers: see docs/gunshi-runtime-contract.md for the Gunshi runtime contract.

Project meta docs: