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

@holoscript/cli

v7.0.0

Published

Command-line interface for HoloScript — compile, validate, dev-serve, and analyze .holo files

Readme

@holoscript/cli

Command-line interface for HoloScript development.

Installation

npm install -g @holoscript/cli

Commands

Build / Compile

Compile HoloScript files to target platforms:

holoscript build src/
holoscript build --target web --output dist/
holoscript compile scene.holo --target unity

Parse & Validate

holoscript parse scene.holo
holoscript validate src/
holoscript ast scene.holo          # Show AST output

Run & Dev

holoscript run scene.holo          # Execute headless
holoscript repl                    # Interactive shell
holoscript watch src/              # Watch for changes
holoscript headless scene.holo     # Headless runtime

Package Management

holoscript add @holoscript/std
holoscript remove @holoscript/std
holoscript list                    # List installed packages
holoscript pack                    # Package assets
holoscript unpack bundle.hsa       # Unpack assets

Registry & Publishing

holoscript publish                 # Publish package
holoscript login                   # Authenticate
holoscript logout                  # Sign out
holoscript whoami                  # Show identity
holoscript access grant user pkg   # Manage access
holoscript org create my-team      # Organization management
holoscript token create            # Token management

HoloGram — 2D → 3D Bundle

Convert a still image, GIF, or video into a content-addressed HoloGram bundle (depth map + normal map + optional quilt/MV-HEVC/parallax render targets):

# Depth-only bundle (no render targets — Sprint 0a)
holoscript hologram photo.jpg --targets ''

# Full bundle with all render targets (requires hologram-worker — Sprint 0c)
holoscript hologram photo.png --targets quilt,mvhevc,parallax

# Custom output directory
holoscript hologram clip.mp4 --out ./my-bundle --targets quilt

# Named bundle (label stored in meta.json)
holoscript hologram avatar.webp --name "My Avatar"

The bundle is written to ./hologram-<hash>/ by default. Pass --out <dir> to override. The directory name encodes the full content hash so bundles are self-verifying.

Code Tools

holoscript traits                  # List available traits
holoscript suggest scene.holo      # Get code suggestions
holoscript generate "a VR lobby"   # AI code generation
holoscript templates               # Show available templates
holoscript inspect output.js       # Inspect compiled output
holoscript diff a.holo b.holo      # Show differences

Deployment

holoscript deploy scene.holo       # Deploy to remote
holoscript monitor                 # Monitor runtime
holoscript wot-export scene.holo   # W3C Web of Things export

Configuration

Create holoscript.config.json:

{
  "$schema": "https://holoscript.net/schemas/config.v3.json",
  "version": 3,
  "compiler": {
    "target": "web",
    "strict": true
  }
}

License

MIT