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

mizan-checker

v1.2.0

Published

Validate and verify Quranic verses in LLM-generated text. Catches hallucinated verses, misquoted references, and fabricated Arabic that LLMs confidently invent.

Readme

Mizan

LLMs hallucinate Quran verses. Not slightly wrong, completely fabricated - Arabic text that looks legit but doesn't exist anywhere in the Quran. I built this to catch that.

Turns out the fix is a normalization pipeline and a lookup table. Strip diacritics, normalize letter variants (alef, yeh, ta marbuta, hamza carriers), collapse whitespace, then check against a pre-computed index of all 6,236 verses. If it's not in the index, it's not Quran.

Try it

  • Web app - azrirefik.github.io/mizan-checker - paste Arabic text, get instant validation. Works offline (PWA).
  • Chrome extension - auto-detects and validates Quran quotes on any webpage.
  • npm package - npm install mizan-checker
  • REST API - FastAPI, deployed via Docker on Railway.

How it actually works

Input: "بسم الله الرحمان الرحيم" (common simplified spelling)
  |
  v  NFKC + strip bidi markers + remove diacritics + normalize variants
  |
"بسم الله الرحمن الرحيم"
  |
  v  lookup in Map<normalized_text, Verse[]>
  |
Match: 1:1 (Al-Fatiha)
  |
  v  return authentic Uthmani text
  |
"بِسْمِ ٱللَّهِ ٱلرَّحْمَٰنِ ٱلرَّحِيمِ"

The normalization handles: alef variants (ا/أ/إ/آ/ٱ), yeh/alef maqsura (ي/ى), ta marbuta/heh (ة/ه), hamza carriers, tatweel, and small letters. Basmala is pre-stripped from verse 1 of each surah (except Al-Fatiha) so lookups work regardless of whether the input includes it.

If a verse doesn't match at all, fabrication analysis kicks in: greedy longest-contiguous-match against the full Quran corpus to show exactly which words are real and which are invented.

Quick start

import { QuranValidator } from 'mizan-checker';

const validator = new QuranValidator();
const result = validator.validate("بِسْمِ ٱللَّهِ ٱلرَّحْمَٰنِ ٱلرَّحِيمِ");
// { isValid: true, reference: "1:1", matchType: "exact" }

With LLM output

import { LLMProcessor, SYSTEM_PROMPTS } from 'mizan-checker';

const processor = new LLMProcessor({ autoCorrect: true });
const result = processor.process(llmResponse);

if (!result.allValid) {
  console.log('Corrected:', result.correctedText);
}

What I learned

  • Arabic text normalization is surprisingly deep. Unicode has multiple representations for the same visual character, and every Quran data source uses slightly different encoding.
  • The Basmala edge case was the hardest bug. AlQuran.cloud's data prepends Basmala to verse 1 of every surah, so "قُلْ هُوَ ٱللَّهُ أَحَدٌ" (112:1) wouldn't match until I pre-stripped it during indexing.
  • Substring matching is a trap. My first approach scanned all 6,236 verses on every failed lookup. O(n) with false positive risk. Pre-computed hash map is the right answer.

Limitations

  • Quran data is from AlQuran.cloud (Uthmani script). Different Quran texts (Indopak, Simple) may normalize differently.
  • The benchmark framework exists but needs API keys to run against live models. Sample results are placeholders.
  • Chrome extension works but isn't on the Chrome Web Store yet (needs $5 developer fee).

License

MIT