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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@metaxia/scriptures-source-stepbible-lexicon

v0.1.1

Published

Hebrew and Greek lexicon data from STEPBible for @metaxia/scriptures. Includes TBESH (Hebrew/BDB), TBESG (Greek/Abbott-Smith), and TFLSJ (Greek/LSJ) lexicons with Strong's number lookup.

Readme

@metaxia/scriptures-source-stepbible-lexicon

Hebrew and Greek lexicon data from STEPBible for use with @metaxia/scriptures.

Features

  • Strong's number lookup for Hebrew and Greek
  • Multiple lexicon sources with varying detail levels
  • Lemma, transliteration, gloss, and full definitions

Included Lexicons

| ID | Name | Language | Description | |----|------|----------|-------------| | stepbible-tbesh | TBESH | Hebrew | Translators Brief lexicon of Extended Strongs for Hebrew. Abridged BDB (Brown-Driver-Briggs) linked to extended Strong's numbers. | | stepbible-tbesg | TBESG | Greek | Translators Brief lexicon of Extended Strongs for Greek. Brief definitions using corrected Abbott-Smith for NT, LXX, and Apocrypha. | | stepbible-tflsj | TFLSJ | Greek | Full LSJ (Liddell-Scott-Jones) entries for all Bible words, formatted for easy reading with extended Strong's linking. |

Installation

npm install @metaxia/scriptures-source-stepbible-lexicon

Usage

import '@metaxia/scriptures-source-stepbible-lexicon/register';
import { lookupStrongs } from '@metaxia/scriptures';

// Look up a Hebrew word
const results = await lookupStrongs('H0001');
// Returns entries from all registered Hebrew lexicons

// Look up a Greek word
const logos = await lookupStrongs('G3056');

// Query a specific lexicon
const entry = await lookupStrongs('H0430', { source: 'stepbible-tbesh' });

Data Format

Each lexicon entry contains:

interface LexiconEntry {
  source: string;              // e.g., "stepbible-tbesh"
  strongsExtended: string;     // e.g., "H0001"
  strongsDisambiguated: string;
  strongsUnified: string;
  lemma: string;               // Hebrew/Greek Unicode
  transliteration: string;     // e.g., "av" for אָב
  morphology: string;          // e.g., "H:N-M"
  gloss: string;               // Brief meaning: "father"
  definition: string;          // Full definition text
}

Building from Source

The lexicon data is imported from STEPBible's TSV files:

npm run import   # Download and convert TSV to JSON
npm run build    # Compile TypeScript

Data Source

All lexicon data is sourced from STEPBible-Data by Tyndale House, Cambridge.

Source Files

  • TBESH: Lexicons/TBESH - Translators Brief lexicon of Extended Strongs for Hebrew - STEPBible.org CC BY.txt
  • TBESG: Lexicons/TBESG - Translators Brief lexicon of Extended Strongs for Greek - STEPBible.org CC BY.txt
  • TFLSJ: Lexicons/TFLSJ - Translators Formatted full LSJ Bible lexicon - STEPBible.org CC BY.txt

License

Package Code

MIT License - see LICENSE

Lexicon Data

The lexicon data from STEPBible is licensed under Creative Commons Attribution 4.0 International (CC BY 4.0).

STEPBible Data is licensed under a Creative Commons Attribution 4.0 International License.

You are free to:

  • Share — copy and redistribute the material in any medium or format
  • Adapt — remix, transform, and build upon the material for any purpose, even commercially

Under the following terms:

  • Attribution — You must give appropriate credit, provide a link to the license, and indicate if changes were made.

See: https://creativecommons.org/licenses/by/4.0/

Attribution

When using this data, please attribute:

Lexicon data from STEPBible.org by Tyndale House, Cambridge. Licensed under CC BY 4.0.

The underlying lexical works have their own scholarly attributions:

  • BDB: Brown, Driver, Briggs, Hebrew and English Lexicon
  • Abbott-Smith: G. Abbott-Smith, A Manual Greek Lexicon of the New Testament
  • LSJ: Liddell, Scott, Jones, A Greek-English Lexicon

Related Packages