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

@osiris-smarttv/device

v0.1.1

Published

Smart TV device platform abstraction — Web, Tizen, webOS, PlayStation

Readme

@osiris-smarttv/device

Platform-agnostic device abstraction for React TV applications.

@osiris-smarttv/device detects the runtime platform (Web, Tizen, webOS, PlayStation, and more), exposes typed subsystems (info, network, lifecycle, storage, display, input), and ships optional React bindings.

Why use it

  • Single API across Smart TV platforms
  • Typed event bus for lifecycle, network, memory, and input
  • PlayStation MASS / MSDK helpers for console builds
  • Adapter registry for custom set-top boxes
  • Pure TypeScript core — React is optional

Install

npm i @osiris-smarttv/device @osiris-smarttv/tv-input

@osiris-smarttv/tv-input is required for virtual key types used by the input subsystem.

Exports

  • @osiris-smarttv/deviceDeviceManager, bootstrap, contracts, detection, events
  • @osiris-smarttv/device/react — React provider / hooks
  • @osiris-smarttv/device/playstation — PlayStation-focused entry
  • @osiris-smarttv/device/launch/* — launch-argument ports
  • @osiris-smarttv/device/ports/* — platform port interfaces
  • @osiris-smarttv/device/adapters/playstation/* — PlayStation adapter internals

Quick start

import { bootstrap, DeviceManager, Platform } from '@osiris-smarttv/device'
import { VirtualKey } from '@osiris-smarttv/tv-input'

await bootstrap({
  onReady: () => {
    const device = DeviceManager.get()

    console.log(device.info.platform)

    device.input.on('key', (event) => {
      if (event.virtualKey === VirtualKey.BACK) history.back()
    })

    if (device.is(Platform.PlayStation5)) {
      // platform-specific logic
    }
  },
})

React usage

import { DeviceProvider } from '@osiris-smarttv/device/react'

export function App() {
  return (
    <DeviceProvider>
      <Shell />
    </DeviceProvider>
  )
}

Platforms

Adapters shipped: Web, Tizen, webOS, PlayStation 4/5, plus Android TV / HbbTV (Web fallback).

See ARCHITECTURE.md for platform matrices, subsystem design, and migration notes.

Source privacy on npm

This package is published as a public npm package, but npm tarballs include only:

  • dist/**
  • README.md
  • metadata files (package.json, LICENSE)

Source files under src/** are excluded by the files allowlist in package.json.

Local development

yarn install
yarn build
yarn typecheck
yarn test

Manual publish

yarn publish:check
yarn publish:dry-run
yarn publish:manual

See PUBLISHING.md for the full checklist.