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

@json-to-office/json-to-pptx

v0.3.0

Published

Professional .pptx presentation generation from JSON - Public API package

Readme

@json-to-office/json-to-pptx

Presentations as data, not code. Generate professional .pptx files from JSON definitions — serializable, schema-validated, LLM-friendly.

npm License: MIT

Part of the json-to-office monorepo.

Install

npm install @json-to-office/json-to-pptx pptxgenjs

Usage

import { generateBufferFromJson } from '@json-to-office/json-to-pptx';
import { writeFileSync } from 'fs';

const buffer = await generateBufferFromJson({
  name: 'pptx',
  props: {
    title: 'Q1 Review',
    theme: 'corporate',
    grid: { columns: 12, rows: 6 },
  },
  children: [
    {
      name: 'slide',
      props: { background: { color: 'background' } },
      children: [
        {
          name: 'text',
          props: {
            text: 'Q1 Results',
            style: 'title',
            grid: { column: 0, row: 0, columnSpan: 12 },
          },
        },
        {
          name: 'chart',
          props: {
            chartType: 'bar',
            data: [{ name: 'Revenue ($M)', values: [1.2, 2.4, 3.1, 4.2] }],
            grid: { column: 0, row: 1, columnSpan: 8, rowSpan: 5 },
          },
        },
        {
          name: 'shape',
          props: {
            type: 'roundRect',
            fill: { color: 'accent' },
            text: 'Revenue\n$4.2M',
            bold: true,
            fontColor: 'FFFFFF',
            grid: { column: 8, row: 1, columnSpan: 4, rowSpan: 2 },
          },
        },
      ],
    },
  ],
});

writeFileSync('deck.pptx', buffer);

Components

7 component types: text (bullets, hyperlinks, style presets), image (URL/file/base64, rotation, rounded corners, shadows), shape (15 types: rect, ellipse, arrow, star, cloud, etc.), table (auto-pagination with header repeat, colspan/rowspan), chart (8 native PowerPoint types: bar, line, pie, area, doughnut, radar, bubble, scatter), highcharts, and slides with grid-based positioning.

Highlights

  • Grid layout — 12-column responsive grid with configurable margins and gutters. Position elements by grid coordinates or absolute inches/percentages.
  • Theme system — 10-slot semantic color scheme, text style presets, 3 built-in themes (minimal, corporate, vibrant) or define your own.
  • Template/placeholder system — Define reusable slide templates with named placeholder regions, static elements, and style inheritance.
  • Schema validation — TypeBox schemas as both TypeScript types and runtime validators.
  • Native charts — 8 PowerPoint chart types rendered natively (no image export needed).
  • Peer dependency — Uses pptxgenjs as the rendering backend. You control the version.

License

MIT — Wiseair srl