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.4

Published

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

Readme

TalkShitGetDared 💀

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.

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


What Even Is This?

TalkShitGetDared is a chaos engine packed with:

  • Truths that make people regret playing
  • Dares that might get you kicked out of the group chat
  • NSFW + SFW modes (you've been warned)
  • English, Spanish, and Hinglish support
  • Difficulty and category filtering — because pain comes in levels
  • Full TypeScript support with type declarations

No dependencies. No mercy.


Installation

npm install talkshitgetdared

or if you're allergic to npm:

pnpm add talkshitgetdared
# or
yarn add talkshitgetdared

Usage

ES Modules (TypeScript / ESM)

import { getTruth, getDare, getRandom, getAvailableLanguages, getAvailableModes } from 'talkshitgetdared';

// Get a random truth
const truth = getTruth();
console.log('Truth:', truth.prompt.text);

// Get a dare in NSFW mode
const dare = getDare({ mode: 'nsfw' });
console.log('Dare:', dare.prompt.text);

// Get a random prompt in Spanish
const random = getRandom({ language: 'spanish', mode: 'sfw' });
console.log(`[${random.type}]`, random.prompt.text);

CommonJS

const { getTruth, getDare, getRandom } = require('talkshitgetdared');

const truth = getTruth();
console.log('Truth:', truth.prompt.text);

CLI

npx talkshitgetdared              # random truth or dare
npx talkshitgetdared truth        # get a truth
npx talkshitgetdared dare --mode nsfw  # NSFW dare
npx talkshitgetdared stats        # library statistics
npx talkshitgetdared --help       # all options

Options

You can filter prompts by:

| Option | Values | Default | |---|---|---| | language | 'english' | 'spanish' | 'hinglish' | 'english' | | mode | 'sfw' | 'nsfw' | 'sfw' | | difficulty | 'easy' | 'medium' | 'hard' | 'extreme' | any | | category | 'personal' | 'embarrassing' | 'relationships' | 'funny' | 'physical' | 'social' | 'intimate' | 'confession' | any |

const dare = getDare({
  language: 'hinglish',
  mode: 'sfw',
  difficulty: 'hard',
  category: 'funny'
});

Advanced Usage

import { getBatch, getStats, enableHistory, createCore } from 'talkshitgetdared';

// Get multiple unique prompts at once
const batch = getBatch({ count: 5, type: 'truth', ensureUnique: true });
batch.prompts.forEach(p => console.log(p.prompt.text));

// Enable history tracking (prevents duplicate prompts)
enableHistory(true);

// Get library statistics
const stats = getStats();
console.log(`Total prompts: ${stats.total}`);

// Create a custom instance with different defaults
const core = createCore({
  defaultLanguage: 'spanish',
  defaultMode: 'nsfw'
});
const dare = core.getDare();

Folder Structure (if you really care)

src/data/lang/
  ├── english/
  │   ├── sfw/
  │   └── nsfw/
  ├── spanish/
  │   └── sfw/
  └── hinglish/
      ├── sfw/
      └── nsfw/

Contribute Your Own Pain

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.

See CONTRIBUTING.md for 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


Links