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/project-tools

v0.24.4

Published

Project orchestration and programmatic tooling for wp-typia

Readme

@wp-typia/project-tools

Programmatic project orchestration package for wp-typia.

Package roles:

  • wp-typia owns the CLI, help, TUI, completions, skills, MCP, and bin entry.
  • @wp-typia/project-tools owns scaffold, add-block, migrate, template, doctor, and schema project helpers. It also owns the typed generator boundary via BlockSpec, BlockGeneratorService, and inspectBlockGeneration(...), plus the emitter-owned built-in structural/code path where built-in templates no longer ship structural, TS/TSX, style, or block-local render.php Mustache files.
  • @wp-typia/block-runtime/* owns generated-project runtime helpers.

Supported public imports:

  • @wp-typia/project-tools
  • @wp-typia/project-tools/schema-core
  • @wp-typia/project-tools/ai-artifacts
  • @wp-typia/project-tools/typia-llm

Implementation note:

  • @wp-typia/project-tools/schema-core remains the preferred project-tooling import path.
  • The shared implementation now lives in @wp-typia/block-runtime/schema-core.
  • Shared manifest/migration contract types now live in @wp-typia/block-runtime/migration-types.
  • The public doctor surface still lives on @wp-typia/project-tools, while environment and workspace checks now sit behind focused helper modules.
  • These splits are maintainability refactors behind stable public facades. Keep importing the documented @wp-typia/project-tools and @wp-typia/project-tools/schema-core surfaces rather than the focused helper files directly.

Example:

import {
  BlockGeneratorService,
  getTemplateById,
  parseMigrationArgs,
  projectJsonSchemaDocument,
  resolvePackageManagerId,
} from '@wp-typia/project-tools';
import { normalizeEndpointAuthDefinition } from '@wp-typia/project-tools/schema-core';
import {
  syncWordPressAiArtifacts,
  type AbilitySpecCatalog,
} from '@wp-typia/project-tools/ai-artifacts';
import {
  syncTypiaLlmAdapterModule,
  projectTypiaLlmApplicationArtifact,
} from '@wp-typia/project-tools/typia-llm';

BlockGeneratorService is the additive typed orchestration boundary for built-in block scaffolds. Built-in templates no longer ship structural, TS/TSX, style, or block-local render.php Mustache files for built-in types.ts, block.json, generated scaffold bodies, or block-local non-TS assets; those files and starter typia.manifest.json now come from the emitter path, while project bootstrap/package-manager files, sync scripts, shared REST helpers, and the remaining non-block assets still come from Mustache-backed template copy.

Generated projects now consume JSON artifacts through typed wrapper modules instead of local casts:

  • block-metadata.ts for block.json
  • manifest-document.ts for editor and migration consumers of typia.manifest.json
  • manifest-defaults-document.ts for validator/defaults consumers of typia.manifest.json

The higher-level generator architecture record, including the current phase map and the non-mutating plan -> validate -> render -> apply tool-facing usage model, lives in docs/block-generator-architecture.md. The public non-mutating controller/tool contract now lives in docs/block-generator-tool-contract.md.

Reusable external layer packages on top of the built-in shared scaffold model are now available through the canonical built-in CLI flags wp-typia create --external-layer-source ... [--external-layer-id ...], wp-typia add block --external-layer-source ... [--external-layer-id ...], and programmatically through scaffoldProject(...), BlockGeneratorService, and inspectBlockGeneration(...). The layer contract record lives in docs/external-template-layer-composition.md.

If you need metadata sync, editor helpers, validation helpers, or other generated-project runtime utilities, import them directly from @wp-typia/block-runtime/*.

@wp-typia/project-tools/typia-llm is an opt-in build-time adapter target for downstream TypeScript-first tool/function consumers. It renders the generated typia.llm TypeScript module from endpoint manifests and canonical contract types, and exposes JSON-friendly projection helpers for compiled typia.llm.application(...) and typia.llm.structuredOutput(...) results. It does not add a generated-project runtime dependency on typia.llm.