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

verb-engine

v1.0.6

Published

A library to conjugate English and Spanish verbs in all tenses.

Readme

📦 VerbEngine

VerbEngine is an extensible library for conjugating Spanish and English verbs — both regular and irregular — across all simple, compound, continuous, and perfect continuous tenses.

Ideal for educational platforms, grammar tools, and language learning apps.

✅ Supported Tenses

This library currently supports conjugation in the following tenses:

🔹 Simple Tenses

  • present
  • past (pretérito)
  • imperfect
  • future
  • conditional

🔹 Perfect Tenses

  • presentPerfect
  • pastPerfect
  • futurePerfect
  • conditionalPerfect

🔹 Continuous Tenses

  • presentContinuous
  • pastContinuous
  • futureContinuous

🔹 Perfect Continuous Tenses

  • presentPerfectContinuous
  • pastPerfectContinuous
  • futurePerfectContinuous
  • conditionalPerfectContinuous

📌 Usage

import { conjugateSpanish, conjugateEnglish } from 'verb-engine';

const spanish = conjugateSpanish('comer');
console.log(spanish.present.yo); // como
console.log(spanish.presentPerfect.yo); // he comido
console.log(spanish.futureContinuous.nosotros); // estaremos comiendo

const english = conjugateEnglish('eat');
console.log(english.present['he/she']); // eats
console.log(english.past.I); // ate
console.log(english.futurePerfectContinuous.we); // will have been eating

📚 Languages

  • 🇪🇸 Spanish – Regular and irregular verbs
  • 🇬🇧 English – Regular and irregular verbs

🔧 Coming Soon

  • Support for more verbs and languages (e.g., French, Italian, Portuguese)
  • CLI tool for batch verb conjugation
  • Web playground
  • API endpoint for cloud-based usage

🧠 Why use VerbEngine?

Lightweight and dependency-free
Easy to integrate in Node.js or frontend projects
Fully typed with TypeScript
Extensible and maintainable architecture

📦 Installation

npm i verb-engine

🚀 Getting Started

import { conjugateEnglish, getEnglishVerbs ,ConjugationResult } from "verb-engine";

export default function Home() {
  const verb = "eat";

  const conjugation: ConjugationResult = conjugateEnglish(verb);
  console.log(getEnglishVerbs) //all available verbs

  return (
    <div className="p-4">
      <h1 className="text-xl font-bold mb-4">"{verb}" conjugation</h1>
      {Object.entries(conjugation).map(
        ([tense, persons]) =>
          typeof persons === "object" &&
          persons && (
            <section key={tense} className="mb-4">
              <h2 className="font-semibold capitalize">{tense}</h2>
              <ul className="ml-4 list-disc">
                {Object.entries(persons).map(([p, f]) => (
                  <li key={p}>
                    <b>{p}:</b> {f}
                  </li>
                ))}
              </ul>
            </section>
          )
      )}
    </div>
  );
}

🔤 Pronoun References

Spanish Pronouns

  • yo - I
  • - you (informal)
  • él/ella - he/she
  • nosotros - we
  • vosotros - you (plural, Spain)
  • ellos - they

English Pronouns

  • I - I
  • you - you
  • he/she - he/she
  • we - we
  • they - they

🤝 Contributing

We welcome contributions! Please feel free to submit a Pull Request.

📄 License

License: MIT

This project is licensed under the MIT License - see the LICENSE file for details.

🐛 Issues

Issues

Found a bug or have a feature request? Please open an issue on our GitHub repository.


Made with ❤️ for language learners and developers worldwide.