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

talkshitgetdared

v1.1.0

Published

The truth will hurt. An open-source cursed-core engine for Truth & Dare prompts.

Readme

TalkShitGetDared 💀

npm version License: MIT Build Status TypeScript

A dangerously cursed, zero-dependency TypeScript package for all your Truth or Dare needs.
Perfect for bots, APIs, party games, emotionally unstable couples, and Discord servers with too much time on their hands.

Warning: Use responsibly... or don’t. I’m not legally responsible if your relationship ends (again).


📚 Documentation

For detailed documentation, API references, and advanced usage, visit: 👉 haruka.lol/projects/TalkShitGetDared


🔥 Features

TalkShitGetDared is a JSON-fueled chaos engine packed with:

  • 🎭 380+ Prompts: Truths that hurt and dares that might get you arrested.
  • 🌍 Multi-Language Support:
    • 🇺🇸 English (SFW + NSFW)
    • 🇪🇸 Spanish (SFW + NSFW)
    • 🇮🇳 Hinglish (SFW + NSFW) (New!)
  • 🔞 Dual Modes: Safe for Work (SFW) and Not Safe for Work (NSFW).
  • 🎯 Advanced Filtering: Filter by difficulty (easy, medium, hard, extreme) and category.
  • 📦 Batch Operations: Get multiple unique prompts in a single call.
  • 🚫 Deduplication: Optional history tracking to prevent repeating prompts.
  • 🛠️ CLI Tool: Run truth or dare directly from your terminal.
  • Zero Dependencies: Lightweight and fast.

🚀 Installation

npm install talkshitgetdared

or if you prefer other package managers:

pnpm add talkshitgetdared
# or
yarn add talkshitgetdared

💻 Usage

Library Usage

import { 
  getTruth, 
  getDare, 
  getRandom, 
  getBatch 
} from 'talkshitgetdared';

// 🎲 Get a random truth
const truth = getTruth();
console.log(truth.prompt.text);

// 😈 Get a specific dare
const dare = getDare({ 
  mode: 'nsfw', 
  difficulty: 'hard',
  language: 'english' 
});
console.log(dare.prompt.text);

// 📦 Get a batch of 5 unique SFW prompts
const batch = getBatch({ 
  count: 5, 
  mode: 'sfw',
  ensureUnique: true 
});
console.log(batch.prompts.map(p => p.prompt.text));

CLI Usage

You can use the CLI directly without installing via npx:

# Get a random truth
npx talkshitgetdared truth

# Get a NSFW dare
npx talkshitgetdared dare --mode nsfw

# Get a Hinglish prompt
npx talkshitgetdared random --language hinglish

# View library statistics
npx talkshitgetdared stats

📂 Project Structure

src/
├── data/           # Prompt data files (JSON/TS)
│   └── lang/       # Organized by language/mode
├── lib/            # Core logic
│   ├── core/       # Main entry point
│   ├── services/   # Business logic services
│   └── types/      # TypeScript definitions
└── cli.ts          # CLI implementation

🤝 Contributing

Want to contribute your cursed prompts?
Fork it, PR it, or write them on a napkin and throw it into the ocean. If it floats back to me, I’ll probably add it.

Check out the Contributing Guidelines for more details.


⚠️ Emotional Disclaimer

This package will not fix your situationship, improve your friendships, or help you get your ex back.
It might, however, destroy all three at once.

I will not be attending your therapy session.


📄 License

MIT — do literally anything. Just don’t sue me if your friends block you.

View License