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.24.4

Published

Canonical CLI package for wp-typia scaffolding and project workflows

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

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 now ships built dist-bunli runtimes, and the canonical Node bin uses a Node-safe fallback runtime for non-TUI create/add/migrate, doctor, sync, --version, --help, and template inspection without requiring a locally installed Bun binary
  • if wp-typia --help says Runtime: Node fallback, you are on that Bun-free path. You get human-readable help/output, common non-interactive project workflows, and lighter prompt behavior where interactive fallback is still supported
  • 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
  • when that Node fallback prompts interactively, it intentionally stays lighter than the Bun/OpenTUI flow: numbered lists, option label/value matching, inline validation retries, and redraw commands for the current choices: ? for the short reprint shortcut, help for the explicit redraw command, and list for users who expect option listing semantics
  • Bunli-specific command surfaces such as skills, completions, and mcp still run through the built dist-bunli/cli.js artifact and require Bun when you use the npm package directly; if you want the full Bunli/OpenTUI runtime story without a local Bun install, prefer the standalone installer from the latest GitHub Release
  • 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/bunli-cli-migration.md for the active CLI ownership contract and the staged Bunli cutover plan.

Project meta docs: