{
  "name": "ircv3",
  "description": "Connect to and interact with IRC servers. IRCv3 compatible.",
  "version": "0.33.1",
  "main": "lib",
  "types": "lib",
  "exports": {
    ".": {
      "types": "./lib/index.d.ts",
      "require": "./lib/index.js",
      "import": "./es/index.mjs"
    }
  },
  "repository": {
    "type": "git",
    "url": "git://github.com/d-fischer/ircv3.git"
  },
  "author": "Daniel Fischer <daniel@d-fischer.dev>",
  "funding": "https://github.com/sponsors/d-fischer",
  "license": "MIT",
  "files": [
    "LICENSE",
    "README.md",
    "lib",
    "es",
    "!**/__tests__"
  ],
  "scripts": {
    "lint": "eslint --ext js,ts src",
    "prettier:check": "prettier --check 'src/**'",
    "prettier:fix": "prettier --write 'src/**'",
    "test": "jest",
    "build": "tsukuru",
    "rebuild": "tsukuru --clean"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.{js,ts,css,json,md}": "prettier --write",
    "*.{js,ts}": "eslint --fix"
  },
  "devDependencies": {
    "@d-fischer/eslint-config": "^6.2.4",
    "@types/jest": "^29.2.5",
    "eslint": "^8.31.0",
    "husky": "^4.3.6",
    "jest": "^29.3.1",
    "jest-environment-node": "^29.3.1",
    "lint-staged": "^13.1.0",
    "prettier": "^2.8.1",
    "ts-jest": "^29.0.3",
    "tsukuru": "^0.8.0-pre.11",
    "typescript": "~4.9.4"
  },
  "dependencies": {
    "@d-fischer/connection": "^10.0.1",
    "@d-fischer/escape-string-regexp": "^5.0.0",
    "@d-fischer/logger": "^4.2.1",
    "@d-fischer/shared-utils": "^3.5.0",
    "@d-fischer/typed-event-emitter": "^3.3.0",
    "klona": "^2.0.5",
    "tslib": "^2.4.1"
  }
}
