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

@press2ai/theme-specialist-glossy

v3.1.1

Published

Classless, AI-first glossy theme. Framework-agnostic templates (Hono, Astro, raw HTML). Semantic HTML, Schema.org microdata, JSON-LD — built for LLM crawlers.

Readme

@press2ai/theme-specialist-glossy

Classless, AI-first theme. Semantic HTML + Schema.org + JSON-LD. Works with Hono, Astro, or any framework that outputs HTML.

Install

npm install @press2ai/theme-specialist-glossy

Usage — Hono / Cloudflare Workers

import { layout, profileCard, profileArticle } from '@press2ai/theme-specialist-glossy/templates';

app.get('/', (c) => c.html(layout({ title: 'Katalog' }, cards)));
app.get('/:slug', (c) => c.html(layout({ title: name }, profileArticle(profile))));

Usage — Astro

---
import Layout from '@press2ai/theme-specialist-glossy/Layout.astro';
import ProfileArticle from '@press2ai/theme-specialist-glossy/ProfileArticle.astro';
import '@press2ai/theme-specialist-glossy/styles/glossy.css';
---
<Layout title={name}>
  <ProfileArticle profile={profile} />
</Layout>

Exports

| Path | What | |---|---| | @press2ai/theme-specialist-glossy | profileSchema, Profile type, getJsonLd, getAiManifest | | @press2ai/theme-specialist-glossy/templates | layout, hero, profileCard, profileArticle | | @press2ai/theme-specialist-glossy/styles/glossy.css | Classless CSS (~12 KB, no JS) | | @press2ai/theme-specialist-glossy/*.astro | Astro wrappers (thin, call templates internally) |

Architecture

CSS (glossy.css) ← classless, styles by semantic tags
        ↑
  templates/*.ts  ← pure functions → HTML strings (single source of truth)
        ↑
  components/*.astro ← thin wrappers for Astro DX

One set of templates, zero divergence between frameworks.

Hosting compatibility

| Platform | Runtime | What you get | |---|---|---| | GitHub Pages (Astro) | Static / SSG | Pre-built HTML + CSS. Zero cost, zero backend. Profile pages generated at build time from profile.json. | | Cloudflare Workers (Hono) | Edge SSR | Dynamic HTML from D1/KV. Database queries, opt-out forms, API endpoints (catalog.json, llms.txt). Free tier: 100k req/day. | | Cloudflare Pages (Astro SSR) | Edge SSR | Astro with @astrojs/cloudflare adapter. D1/KV bindings via Astro.locals. Middle ground — Astro DX + edge database. |

GitHub Pages = static profiles, no server needed. Good for claimed/verified personal pages.

Cloudflare Workers = full SSR, database, forms, API. Good for catalogs, directories, dynamic listings. Templates work directly — c.html(layout(...)).

Cloudflare Pages = if you want Astro's routing/islands AND server-side data. Same templates under the hood, Astro components on top.

License

MIT