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

kract

v1.0.23

Published

KRACT is a powerful CLI tool for project management and Blender extension development workflows.

Readme

kract

KRACT is a powerful CLI tool for project management and Blender extension development workflows.

Installation

Global Installation

npm install -g kract@latest

Usage without Installation

npx kract@latest <command>

CLI Commands

Blender Extension Development

# Initialize or reset configuration
kract blender init

# Package extensions into ZIP files
kract blender package

# Deploy packaged extensions
kract blender deploy

Blender Extension Development

# Initialize or reset configuration
kract blender init

# Package extensions into ZIP files
kract blender package

# Deploy packaged extensions
kract blender deploy

Other Commands

# Retrieve secret data
kract secret
# or
kract s

Features

📁 Project Management

Note: Project creation functionality has been moved to the create-kract package. Use npx create-kract@latest to create new projects.

For project management commands, see:

🎬 Blender Extension Development

Streamlined workflow for Blender extension development:

  1. Automatic Blender Detection: Automatically finds and sets up Blender installations (4.2+)
  2. Configuration Management: Manages Development Repository (required) and API Repository Directory (optional) paths
  3. Packaging: Automatically packages extensions with proper naming conventions
  4. Deployment: Deploys to remote repositories with index.json generation
  5. Packaging-Only Mode: Supports packaging without deployment when API Repository is not set

Note: Blender extension template creation is handled by create-kract. Use npx create-kract@latest --blender to create extension templates.

Naming Standards

Project Folders

  • Format: [ProjectID]_[ClientName]_[ProjectName]
  • Project IDs: K[YY][NNN] format
  • Standard subfolders: comp/, in/, out/
  • Post-project: portfolio/ folder creation

Application Support

  • Graphics: ae (After Effects), ai (Illustrator), ps (Photoshop)
  • 3D: b3d (Blender), c4d (Cinema 4D), unity, zbrush
  • Video: resolve (DaVinci Resolve), fusion
  • Other: md (MarkDown), sbp (Substance Painter)

Version Naming

  • Use _v1, _v2 (single digit preferred)
  • No leading zeros in version numbers

Configuration Files

.kract - Project Configuration

Stores project metadata in ENV format (no header comments):

PROJECT_ID="K25123"
CLIENT_NAME="ClientName"
PROJECT_NAME="ProjectName"
APPS="ae,ps,b3d"
CREATED_AT="2025-01-01T00:00:00.000Z"

Important: Do not delete the .kract file. It is required for the project to function correctly.

.kractrc - Blender Extension Configuration

Stored in home directory, ENV format:

BLENDER_DEV_REPO_DIR="/path/to/dev/repo"
BLENDER_REMOTE_REPO_DIR="/path/to/api/repo"

project.json - Custom Project Structure

JSON format for customizing project directory structures:

{
  "$schema": "https://example.com/create/schema.json",
  "base": ["comp", "in", "out"],
  "apps": {
    "ae": ["export", "footage", "(old)"],
    "b3d": {
      "temp": ["render", "tex"],
      "(old)": []
    }
  }
}

Auto-Generated README.md

When creating a new project, a README.md file is automatically generated with:

  • Project name as title
  • Instructions for adding applications using npx create-kract@latest --add
  • Important note about not deleting the .kract file