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

@typix-editor/extension-starter-kit

v5.0.1

Published

Starter kit extension for Typix — bundles common built-in extensions

Readme

@typix-editor/extension-starter-kit

Curated bundle of essential extensions with preset configurations for quick setup.

Installation

npm install @typix-editor/extension-starter-kit
# or
pnpm add @typix-editor/extension-starter-kit

Usage

import { StarterKit } from "@typix-editor/extension-starter-kit"
import { createTypix } from "@typix-editor/core"

// Full preset (default) — all 19 extensions enabled
const editor = createTypix({
  extensions: [StarterKit()],
})

// Blog preset — common formatting for blog posts
const editor = createTypix({
  extensions: [StarterKit({ preset: "blog" })],
})

// Minimal preset — just bold, italic, headings (h1–h3), and history
const editor = createTypix({
  extensions: [StarterKit({ preset: "minimal" })],
})

// Disable specific extensions
const editor = createTypix({
  extensions: [
    StarterKit({
      strike: false,
      subscript: false,
    }),
  ],
})

// Configure individual extensions
const editor = createTypix({
  extensions: [
    StarterKit({
      heading: { levels: [1, 2, 3] },
      link: { validateUrl: (url) => url.startsWith("https://") },
    }),
  ],
})

Configuration

| Option | Type | Default | Description | |--------|------|---------|-------------| | preset | "minimal" \| "blog" \| "full" | "full" | Preset configuration to use | | bold | false \| Partial<BoldConfig> | enabled | Bold text formatting | | italic | false \| Partial<ItalicConfig> | enabled | Italic text formatting | | underline | false \| Partial<UnderlineConfig> | enabled | Underline text formatting | | strike | false \| Partial<StrikeConfig> | enabled | Strikethrough text formatting | | subscript | false \| Partial<SubscriptConfig> | enabled | Subscript text formatting | | superscript | false \| Partial<SuperscriptConfig> | enabled | Superscript text formatting | | highlight | false \| Partial<HighlightConfig> | enabled | Text highlight formatting | | heading | false \| Partial<HeadingConfig> | enabled | Heading levels (h1–h6) | | blockquote | false \| Partial<BlockquoteConfig> | enabled | Block quote support | | list | false \| Partial<ListConfig> | enabled | Ordered, unordered, and checklist | | code | false \| Partial<CodeConfig> | enabled | Inline code formatting | | alignment | false \| Partial<AlignmentConfig> | enabled | Text alignment (left, center, right, justify) | | link | false \| Partial<LinkConfig> | enabled | Link node with toggle commands | | history | false \| Partial<HistoryConfig> | enabled | Undo/redo history | | autoLink | false \| Partial<AutoLinkConfig> | enabled | Automatic URL detection and linkification | | dragDropPaste | false \| Partial<DragDropPasteConfig> | enabled | File drag-and-drop and paste handling | | fontSize | false \| Partial<FontSizeConfig> | enabled | Font size control | | fontFamily | false \| Partial<FontFamilyConfig> | enabled | Font family control | | direction | false \| Partial<DirectionConfig> | enabled | Text direction (LTR/RTL) |

Set any extension to false to disable it, or pass a partial config object to customize it.

Presets

"minimal"

Bold, italic, heading (h1–h3), history.

"blog"

Bold, italic, underline, strike, heading (h1–h3), blockquote, list, link, autoLink, history.

"full" (default)

All 19 extensions enabled with sensible defaults.

API

Exported Types

  • StarterKitOptions — Extension configuration interface.

Individual Extension Re-exports

Each bundled extension is also exported individually for tree-shaking:

import {
  BoldExtension,
  ItalicExtension,
  UnderlineExtension,
  StrikeExtension,
  SubscriptExtension,
  SuperscriptExtension,
  HighlightExtension,
  HeadingExtension,
  BlockquoteExtension,
  ListExtension,
  CodeExtension,
  AlignmentExtension,
  LinkExtension,
  HistoryExtension,
  FontSizeExtension,
  FontFamilyExtension,
  DirectionExtension,
} from "@typix-editor/extension-starter-kit"