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

tvos-assets

v1.1.0

Published

CLI tool to generate tvOS Images.xcassets from icon and background images

Readme

tvos-assets

CLI tool that generates a complete tvOS Images.xcassets bundle from an icon and a background image. Produces all required Brand Assets (app icons with parallax layers, Top Shelf images), splash screen assets, and a standalone icon.png — ready to drop into an Xcode or React Native tvOS project.

Quick Start

npx tvos-assets --icon ./icon.png --background ./bg.png --color "#F39C12"

Generates a timestamped zip file on your Desktop containing Images.xcassets and icon.png with all required tvOS assets. Each run produces a unique file — no overwriting.

Install

Global (adds tvos-assets to your PATH):

npm install -g tvos-assets

Run without installing (via npx):

npx tvos-assets --icon ./icon.png --background ./bg.png --color "#F39C12"

Project dependency (e.g. for a build script):

npm install --save-dev tvos-assets

Requirements

  • Node.js >= 18 (this is a CLI tool — it does not run in the browser)
  • sharp native dependency (installed automatically; see platform support if install fails)

Development Setup

git clone https://github.com/keiver/tvos-assets.git
cd tvos-assets
npm install

Usage

tvos-assets --icon <path> --background <path> --color <hex> [--output <path>] [--icon-border-radius <px>] [--config <path>]

CLI Options

| Option | Required | Description | |---|---|---| | --icon <path> | Yes | Path to icon PNG (transparent background) | | --background <path> | Yes | Path to background PNG | | --color <hex> | Yes | Background color hex (e.g. "#F39C12") | | --output <path> | No | Output directory for the zip file. Defaults to ~/Desktop | | --icon-border-radius <px> | No | Border radius for the icon in pixels. 0 = square (default), large value = circle. | | --config <path> | No | Path to a JSON config file for advanced customization | | --version | No | Print version | | --help | No | Show help |

CLI arguments override config file values, which override built-in defaults.

When --output is omitted the tool writes a timestamped zip file to ~/Desktop. If the Desktop folder does not exist (e.g. on a Linux server) it falls back to ~.

Each run produces a uniquely timestamped zip file (e.g. tvos-assets-20260131-141523.zip), so multiple runs never overwrite each other. The zip contains Images.xcassets/ and icon.png.

Examples

Generate to Desktop (default):

tvos-assets --icon ./icon.png --background ./bg.png --color "#F39C12"

Generate into a specific directory:

tvos-assets --icon ./icon.png --background ./bg.png --color "#F39C12" --output ./my-tvos-app

Use a config file:

tvos-assets --config ./tvos-assets.config.json

Config file with CLI overrides (CLI args take precedence):

tvos-assets --config ./tvos-assets.config.json --color "#00FF00" --output ./output

Generated Files

The tool produces a timestamped zip file (e.g. tvos-assets-20260131-141523.zip) containing 39 files: 20 Contents.json + 18 PNGs + icon.png.

tvos-assets-YYYYMMDD-HHmmss.zip
├── icon.png                                     (1024x1024, icon on background)
└── Images.xcassets/
    ├── Contents.json
    ├── AppIcon.brandassets/
    │   ├── Contents.json
    │   ├── App Icon.imagestack/
    │   │   ├── Contents.json
    │   │   ├── Front.imagestacklayer/
    │   │   │   ├── Contents.json
    │   │   │   └── Content.imageset/
    │   │   │       ├── Contents.json
    │   │   │       ├── [email protected]             (400x240)
    │   │   │       └── [email protected]             (800x480)
    │   │   ├── Middle.imagestacklayer/
    │   │   │   ├── Contents.json
    │   │   │   └── Content.imageset/
    │   │   │       ├── Contents.json
    │   │   │       ├── [email protected]            (400x240)
    │   │   │       └── [email protected]            (800x480)
    │   │   └── Back.imagestacklayer/
    │   │       ├── Contents.json
    │   │       └── Content.imageset/
    │   │           ├── Contents.json
    │   │           ├── [email protected]              (400x240, opaque)
    │   │           └── [email protected]              (800x480, opaque)
    │   ├── App Icon - App Store.imagestack/
    │   │   └── ... (same 3-layer structure, 1280x768 @1x)
    │   ├── Top Shelf Image.imageset/
    │   │   ├── Contents.json
    │   │   ├── [email protected]                       (1920x720, opaque)
    │   │   └── [email protected]                       (3840x1440, opaque)
    │   └── Top Shelf Image Wide.imageset/
    │       ├── Contents.json
    │       ├── [email protected]                      (2320x720, opaque)
    │       └── [email protected]                      (4640x1440, opaque)
    ├── SplashScreenLogo.imageset/
    │   ├── Contents.json
    │   ├── [email protected]                      (200px)
    │   ├── [email protected]                      (400px)
    │   ├── [email protected]                      (600px)
    │   ├── [email protected]                   (200px, tv)
    │   └── [email protected]                   (400px, tv)
    └── SplashScreenBackground.colorset/
        └── Contents.json                        (light/dark color definitions)

Input Requirements

  • Icon: PNG with transparent background. Centered and scaled to 60% of the shorter output dimension.
  • Background: Any PNG. Resized with cover-fit and center-cropped to each required dimension.
  • Color: Hex format #RRGGBB (e.g. #F39C12). Used for the splash screen background colorset.

Image Size Requirements

| Input | Minimum | Recommended | Notes | |---|---|---|---| | Icon | 1024x1024 | 1280x1280+ | Below minimum: error. Below recommended: warning (upscaling artifacts possible) | | Background | 2320x720 | 4640x1440+ | Below minimum: error. Below recommended: warning (Top Shelf @2x may look blurry) |

The tool will also warn if input files exceed 50MB (high memory usage) or 8192px in any dimension.

Brand Asset Details

App Icon Layers (Parallax)

tvOS app icons use a 3-layer imagestack for the parallax depth effect when the user moves the Siri Remote:

| Layer | Content | Format | |---|---|---| | Front | Icon on transparent canvas | PNG with alpha | | Middle | Icon on transparent canvas | PNG with alpha | | Back | Background image only | Opaque PNG (no alpha) |

Top Shelf Images

Composited images (icon centered on background), written as opaque RGB PNGs as required by tvOS.

| Asset | Size (points) | Scales | |---|---|---| | Top Shelf Image | 1920x720 | 1x, 2x | | Top Shelf Image Wide | 2320x720 | 1x, 2x |

Splash Screen

| Asset | Type | Description | |---|---|---| | SplashScreenLogo | Imageset | Icon on transparent background at 1x/2x/3x (universal) + 1x/2x (tv) | | SplashScreenBackground | Colorset | Light/dark color definitions for universal + tv idioms |

Configuration File

For full control, create a JSON config file. All sections are optional — omitted values use built-in defaults. Add the $schema field for editor autocompletion:

{
  "$schema": "./schema.json"
}

Minimal config

{
  "$schema": "./schema.json",
  "inputs": {
    "iconImage": "./icon.png",
    "backgroundImage": "./background.png",
    "backgroundColor": "#B43939"
  }
}

Full config

{
  "$schema": "./schema.json",
  "inputs": {
    "iconImage": "./icon.png",
    "backgroundImage": "./background.png",
    "backgroundColor": "#B43939",
    "iconBorderRadius": 80
  },
  "output": {
    "directory": "./output"
  },
  "brandAssets": {
    "name": "AppIcon",
    "appIconSmall": {
      "enabled": true,
      "name": "App Icon",
      "size": { "width": 400, "height": 240 },
      "scales": ["1x", "2x"],
      "layers": {
        "front": { "source": "icon" },
        "middle": { "source": "icon" },
        "back": { "source": "background" }
      }
    },
    "appIconLarge": {
      "enabled": true,
      "name": "App Icon - App Store",
      "size": { "width": 1280, "height": 768 },
      "scales": ["1x"],
      "layers": {
        "front": { "source": "icon" },
        "middle": { "source": "icon" },
        "back": { "source": "background" }
      }
    },
    "topShelfImage": {
      "enabled": true,
      "name": "Top Shelf Image",
      "size": { "width": 1920, "height": 720 },
      "scales": ["1x", "2x"],
      "filePrefix": "top"
    },
    "topShelfImageWide": {
      "enabled": true,
      "name": "Top Shelf Image Wide",
      "size": { "width": 2320, "height": 720 },
      "scales": ["1x", "2x"],
      "filePrefix": "wide"
    }
  },
  "splashScreen": {
    "logo": {
      "enabled": true,
      "name": "SplashScreenLogo",
      "baseSize": 200,
      "filePrefix": "200-icon",
      "universal": { "scales": ["1x", "2x", "3x"] },
      "tv": { "scales": ["1x", "2x"] }
    },
    "background": {
      "enabled": true,
      "name": "SplashScreenBackground",
      "universal": { "light": "#B43939", "dark": "#B43939" },
      "tv": { "light": "#B43939", "dark": "#B43939" }
    }
  },
  "xcassetsMeta": {
    "author": "xcode",
    "version": 1
  }
}

Config Reference

inputs

| Key | Type | Required | Description | |---|---|---|---| | iconImage | string | Yes | Path to the app icon PNG (transparent background). | | backgroundImage | string | Yes | Path to the background PNG. | | backgroundColor | string | Yes | Hex color #RRGGBB for the splash screen background. | | iconBorderRadius | number | No | Border radius in pixels. 0 = square (default), large value = circle. |

output

| Key | Type | Default | Description | |---|---|---|---| | directory | string | ~/Desktop | Output directory for the zip file. |

brandAssets

| Key | Type | Default | Description | |---|---|---|---| | name | string | "AppIcon" | Folder name for the .brandassets bundle. Must match ASSETCATALOG_COMPILER_APPICON_NAME in Xcode. |

All four assets are required by tvOS but can be individually disabled with "enabled": false.

appIconSmall — Home screen app icon (3-layer parallax imagestack)

| Key | Type | Default | Description | |---|---|---|---| | enabled | boolean | true | Set to false to skip. | | name | string | "App Icon" | Folder name in the Brand Assets catalog. | | size | {width, height} | {400, 240} | Base size in points. Multiplied by each scale. | | scales | string[] | ["1x", "2x"] | Scale factors to generate. | | layers | object | see below | Layer configuration. |

appIconLarge — App Store icon (same structure, 1x only)

| Key | Type | Default | Description | |---|---|---|---| | enabled | boolean | true | Set to false to skip. | | name | string | "App Icon - App Store" | Folder name in the Brand Assets catalog. | | size | {width, height} | {1280, 768} | Base size in points. | | scales | string[] | ["1x"] | App Store only needs 1x. | | layers | object | see below | Layer configuration. |

Layer configuration:

"layers": {
  "front":  { "source": "icon" },
  "middle": { "source": "icon" },
  "back":   { "source": "background" }
}
  • "icon" — renders the icon centered on a transparent canvas (PNG with alpha).
  • "background" — uses the background image only (opaque, no alpha channel).

topShelfImage / topShelfImageWide

| Key | Type | Default (standard / wide) | Description | |---|---|---|---| | enabled | boolean | true | Set to false to skip. | | name | string | "Top Shelf Image" / "Top Shelf Image Wide" | Folder name. | | size | {width, height} | {1920, 720} / {2320, 720} | Base size in points. | | scales | string[] | ["1x", "2x"] | Scale factors. | | filePrefix | string | "top" / "wide" | Filename prefix. |

splashScreen

splashScreen.logo

| Key | Type | Default | Description | |---|---|---|---| | enabled | boolean | true | Set to false to skip. | | name | string | "SplashScreenLogo" | Imageset folder name. Must match LaunchScreen storyboard. | | baseSize | number | 200 | Base icon size in px. Multiplied by each scale. | | filePrefix | string | "200-icon" | Filename prefix. | | universal.scales | string[] | ["1x", "2x", "3x"] | Scales for non-TV devices. | | tv.scales | string[] | ["1x", "2x"] | Scales for Apple TV. |

splashScreen.background

| Key | Type | Default | Description | |---|---|---|---| | enabled | boolean | true | Set to false to skip. | | name | string | "SplashScreenBackground" | Colorset folder name. Must match LaunchScreen storyboard. | | universal.light | string | Same as --color | Light mode color for non-TV. | | universal.dark | string | Same as --color | Dark mode color for non-TV. | | tv.light | string | Same as --color | Light mode color for Apple TV. | | tv.dark | string | Same as --color | Dark mode color for Apple TV. |

xcassetsMeta

| Key | Type | Default | Description | |---|---|---|---| | author | string | "xcode" | Author field in Contents.json. | | version | integer | 1 | Version field in Contents.json. |

npm Scripts

| Script | Description | |---|---| | npm run dev | Run directly from TypeScript source | | npm run build | Compile to JavaScript in dist/ | | npm start | Run compiled build | | npm test | Run tests | | npm run test:coverage | Run tests with coverage report |

License

MIT