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

@rnzeus/themis

v0.1.2

Published

Shared ESLint, Prettier, TypeScript and optional Babel configs used across RNZeus projects

Readme

@rnzeus/themis

Shared ESLint, Prettier, TypeScript and optional Babel configuration presets used across RNZeus projects.

The goal of Themis is to provide a clean, predictable base configuration that can be reused across multiple projects, while keeping project-specific structure decisions opt-in.


Installation

npm install -D @rnzeus/themis

ESLint

Base config

// eslint.config.js
import base from "@rnzeus/themis/eslint";

export default [...base];

FSD / team preset

// eslint.config.js
import base from "@rnzeus/themis/eslint";
import fsd from "@rnzeus/themis/eslint/fsd";

export default [...base, ...fsd];

Prettier

// prettier.config.cjs
module.exports = require("@rnzeus/themis/prettier");

TypeScript

Base

{
  "extends": "@rnzeus/themis/tsconfig/base"
}

React Native

{
  "extends": "@rnzeus/themis/tsconfig/react-native"
}

FSD / team preset

{
  "extends": "@rnzeus/themis/tsconfig/rnfsd"
}

⚠️ Important: baseUrl and paths

The presets provided by Themis intentionally do NOT define baseUrl.

This is a conscious design decision:

  • baseUrl inside a shared preset breaks resolution when used via extends
  • the value becomes relative to node_modules/@rnzeus/themis, not your project
  • this causes subtle and hard-to-debug TypeScript resolution issues

What this means for FSD presets

If you use rnfsd.json (or any preset that defines paths):

👉 you must define baseUrl in your project tsconfig

Example:

{
  "extends": "@rnzeus/themis/tsconfig/rnfsd.json",
  "compilerOptions": {
    "baseUrl": "./src"
  }
}

Babel (optional)

Babel configuration is optional and provided as opt-in presets. It is useful mainly for React Native projects to keep module aliases in sync with FSD structure.

Base Babel config

// babel.config.js
const base = require("@rnzeus/themis/babel/base");

module.exports = {
  ...base,
};

FSD module resolver

// babel.config.js
const base = require("@rnzeus/themis/babel/base");
const rnfsd = require("@rnzeus/themis/babel/rnfsd-module-resolver");

module.exports = {
  ...base,
  plugins: [...(base.plugins ?? []), ["module-resolver", rnfsd]],
};

Why aliases are defined in Babel

TypeScript paths are used only for type-checking and editor support. They do not rewrite import paths in emitted JavaScript.

Babel (together with Metro) must also understand aliases, otherwise React Native will fail to resolve modules at runtime.


Peer dependencies

@rnzeus/themis is a configuration-only package.

It expects ESLint, Prettier and TypeScript to be installed in your project. Refer to peerDependencies in package.json for the full list.


License

MIT