Skip to content

Latest commit

 

History

History
40 lines (32 loc) · 1.97 KB

File metadata and controls

40 lines (32 loc) · 1.97 KB

The shared family holds the primitives reused across MdWrk packages, apps, themes, and public-site generation.

Why

Good package repos keep primitives discoverable and separate from feature packages. This index shows what is intentionally shared across the workspace.

What

  • @mdwrk/ui-tokens for token defaults and class-facing theme data.
  • @mdwrk/icons for workspace icon identifiers and metadata.
  • @mdwrk/i18n for locale catalogs and runtime formatting helpers.
  • @mdwrk/testing for lightweight browser and timing test utilities.
  • @mdwrk/structured-data for Schema.org and JSON-LD builders.

Installation

Node.js 20.x through 22.x, matching the workspace engine contract in the root package manifest.

npm install @mdwrk/ui-tokens @mdwrk/icons @mdwrk/i18n @mdwrk/testing @mdwrk/structured-data

Usage

Pull these packages into apps and higher-level libraries when you need stable primitives instead of app-specific implementations.

Related