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

create-kract

v1.1.7

Published

Create a new KRACT project workspace

Downloads

1,112

Readme

create-kract

Scaffold package for quickly creating new KRACT projects without installing kract globally.

Usage

Quick Start

Create a new project using any package manager:

# npm
npx create-kract@latest

# yarn
yarn create kract@latest

# pnpm
pnpm create kract@latest

# bun
bun create kract@latest

This command will automatically execute kract@latest create to set up your project structure.

Options

All project creation and Blender extension template options are supported:

Project Creation

# Create new project (interactive mode)
npx create-kract@latest

# Create project with all options specified
npx create-kract@latest --number 123 --client "ClientName" --name "ProjectName" --apps "ae,ps,b3d" --yes

# Add new application folders to existing project
npx create-kract@latest --add

# Generate default project.json configuration
npx create-kract@latest --json

Project Creation Options:

  • --number or -n <number>: Project number (1-999). If not specified, you'll be prompted
  • --client <name>: Client name. If not specified, you'll be prompted
  • --name <name>: Project name. If not specified, you'll be prompted
  • --apps <app1,app2,...>: Comma-separated list of applications to include (e.g., "ae,ps,b3d"). If not specified, you'll be prompted to select
  • --yes or -y: Skip confirmation prompt
  • --json: Generate default project.json configuration file in the current directory
  • --add or -a: Add new application folders to an existing project (auto-detects project root by finding .kract file)
  • --help or -h: Show help message

Blender Extension Template

# Create Blender extension template (interactive mode)
npx create-kract@latest --blender

# Create Blender extension with all options specified
npx create-kract@latest --blender add-on --name "My Addon" --tagline "TAGLINE" --maintainer "MAINTAINER <[email protected]>" --min 4.2.0 --yes

# Create Blender theme extension
npx create-kract@latest --blender theme --name "My Theme" --yes

Blender Extension Template Options:

  • --blender [add-on|addon|theme]: Extension type (required). Use addon as shorthand for add-on
  • --name "Extension Name": Extension name (optional, defaults to "my-addon" or "my-theme")
  • --tagline "Short description": One-line description, max 64 characters, no ending punctuation (optional, defaults to "A Blender extension")
  • --maintainer "Maintainer Name": Maintainer name (optional, defaults to "Developer")
  • --min "4.2.0": Minimum Blender version (optional, defaults to "4.2.0")
  • --yes or -y: Skip confirmation prompt

When running in interactive mode (--blender without type), only the extension type is required. All other fields are optional and will use default values if left empty.

How It Works

The create-kract package is an independent CLI tool built with TypeScript that:

  1. Provides a standalone project creation tool without requiring global installation of kract
  2. Implements all project creation and Blender extension template generation functionality directly
  3. Uses modern TUI libraries (@clack/prompts) for interactive user experience
  4. Supports custom project structures via project.json configuration files
  5. Automatically detects project roots and manages project metadata

Technical Details

  • Language: TypeScript (strict mode)
  • Build Tool: tsup for bundling and minification
  • Code Protection: javascript-obfuscator for code obfuscation
  • Import Aliases: Uses @/ alias for src/ directory
  • Output: Single obfuscated binary at dist/index.js