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

@shotlingo/screenshot-sizes

v1.0.1

Published

Current App Store + Google Play screenshot size requirements (2026). iPhone 6.9, 6.7, 6.5, 6.1, 5.5", iPad Pro 13, 11", Mac, Apple TV, Vision Pro — pixels, aspect ratios, minimum count, and orientation per device class.

Readme

@shotlingo/screenshot-sizes

npm version npm downloads license GitHub stars

Current App Store + Google Play screenshot size requirements (2026).

Pixel dimensions, aspect ratios, minimum count, and orientation for every device class Apple and Google currently ask for — iPhone 6.9" through legacy 3.5", iPad 13" through 9.7", every Apple Watch class (Ultra 3, Series 11–3), Mac, Apple TV, Apple Vision Pro, and Google Play phone / 7" tablet / 10" tablet / Wear OS / Android TV.

Verified against Apple App Store Connect Help and Google Play Console help. Maintained alongside Shotlingo — an AI-powered App Store screenshot localization tool used by indie iOS / Android developers shipping to 40+ language markets.

Install

npm install @shotlingo/screenshot-sizes

Usage

import {
  APP_STORE_SIZES,
  PLAY_STORE_SIZES,
  appStoreSize,
  playStoreSize,
  requiredAppStoreSizes,
  requiredPlayStoreSizes,
} from '@shotlingo/screenshot-sizes';

appStoreSize('iphone-6.9');
// {
//   id: 'iphone-6.9',
//   label: 'iPhone 6.9"',
//   devices: ['iPhone Air', 'iPhone 17 Pro Max', ...],
//   portrait: { width: 1320, height: 2868 },
//   landscape: { width: 2868, height: 1320 },
//   required: true,
//   minCount: 1,
//   maxCount: 10,
//   notes: 'Required base size for all new submissions...'
// }

// The minimum set to upload for an iOS submission:
requiredAppStoreSizes().map((s) => s.label);
// ['iPhone 6.9"', 'iPad 13"', 'Apple Watch Ultra 3', 'Mac', 'Apple TV', 'Apple Vision Pro']

Use in a Fastlane Snapfile

# Snapfile — pull the canonical iPhone 6.9" size from this package
# rather than hardcoding 1320x2868 in every screenshot generator.
devices(["iPhone 17 Pro Max"]) # screenshot at 1320x2868
languages(%w[en-US ja de fr es])

Companion tool

App Store Screenshot Sizes 2026 reference (Shotlingo) — the same data rendered as a sortable, copy-to-clipboard reference page with "Last verified" stamps per row. The page also exposes:

If you want to localize App Store screenshots into 40+ languages at all of the above sizes in one upload, Shotlingo is the tool this dataset was extracted from.

See also

  • @shotlingo/locale-codes — App Store + Play Store locale codes for 40+ supported languages (ISO 639-1 → App Store Connect + Play Console mapping with RTL flag).
  • @shotlingo/text-expansion — translation length expansion ratios per target language for App Store screenshot localization (avoid German text overflowing your buttons).

License

MIT © Alperen Güntekin