{
  "name": "@mastondzn/dank-twitch-irc",
  "type": "module",
  "version": "8.0.0",
  "description": "Twitch IRC library for Node.js",
  "author": "Ruben Anders (https://github.com/RAnders00)",
  "maintainers": [
    "Maston (https://github.com/mastondzn)"
  ],
  "license": "MIT",
  "homepage": "https://github.com/mastondzn/dank-twitch-irc#readme",
  "repository": "https://github.com/mastondzn/dank-twitch-irc",
  "bugs": {
    "url": "https://github.com/mastondzn/dank-twitch-irc/issues"
  },
  "keywords": [
    "twitch",
    "irc",
    "chat",
    "tmi"
  ],
  "publishConfig": {
    "access": "public",
    "provenance": true
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.mts",
      "import": "./dist/index.mjs",
      "default": "./dist/index.mjs"
    }
  },
  "main": "dist/index.mjs",
  "types": "dist/index.d.mts",
  "files": [
    "dist"
  ],
  "engines": {
    "node": ">=22"
  },
  "dependencies": {
    "async-sema": "^3.1.1",
    "eventemitter3": "^5.0.4"
  },
  "devDependencies": {
    "@mastondzn/eslint": "^1.8.0",
    "@types/node": "^25.6.0",
    "@vitest/coverage-v8": "^4.1.4",
    "bumpp": "^11.0.1",
    "eslint": "^10.2.0",
    "prettier": "^3.8.2",
    "rimraf": "^6.1.3",
    "tsdown": "^0.21.7",
    "typedoc": "^0.28.18",
    "typedoc-plugin-markdown": "^4.11.0",
    "typedoc-vitepress-theme": "^1.1.2",
    "typescript": "^6.0.2",
    "vite": "^8.0.8",
    "vitepress": "^1.6.4",
    "vitest": "^4.1.4"
  },
  "scripts": {
    "build": "tsdown --entry ./src/index.ts --out ./dist --unbundle --sourcemap",
    "lint": "eslint .",
    "typecheck": "tsc --noEmit",
    "format": "prettier . --write !pnpm-lock.yaml",
    "format:check": "prettier --check . !pnpm-lock.yaml",
    "test": "vitest",
    "release": "bumpp",
    "clean": "rimraf --glob ./dist ./coverage .vitepress/{cache,dist,typedoc}",
    "docs:md": "typedoc ./src/index.ts --plugin typedoc-plugin-markdown --plugin typedoc-vitepress-theme --out ./.vitepress/typedoc",
    "docs:serve": "pnpm run clean && pnpm run docs:md && vitepress dev",
    "docs:build": "pnpm run clean && pnpm run docs:md && vitepress build"
  }
}