{
  "name": "@jackdbd/eleventy-plugin-telegram",
  "version": "2.2.0",
  "description": "Eleventy plugin that sends Telegram messages when Eleventy starts/finishes building your site.",
  "author": {
    "name": "Giacomo Debidda",
    "email": "giacomo@giacomodebidda.com",
    "url": "https://giacomodebidda.com/"
  },
  "license": "MIT",
  "private": false,
  "publishConfig": {
    "access": "public"
  },
  "keywords": [
    "11ty",
    "plugin",
    "telegram"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/jackdbd/undici"
  },
  "homepage": "https://github.com/jackdbd/undici/tree/main/packages/eleventy-plugin-telegram#readme",
  "engines": {
    "node": ">=18"
  },
  "type": "module",
  "exports": {
    ".": {
      "types": "./lib/index.d.ts",
      "import": "./lib/index.js"
    },
    "./*": {
      "types": "./lib/*.d.ts",
      "import": "./lib/*.js"
    },
    "./package.json": "./package.json"
  },
  "typesVersions": {
    "*": {
      "*": [
        "./lib/*.d.ts"
      ]
    }
  },
  "files": [
    "CHANGELOG.md",
    "LICENSE",
    "README.md",
    "lib"
  ],
  "scripts": {
    "build": "run-s 'build:ts' 'docs' --print-label",
    "build:ts": "tsc -p tsconfig.json",
    "build:ts:watch": "tsc -p tsconfig.json --watch",
    "clean": "rimraf lib/ tsconfig.tsbuildinfo",
    "dev": "run-p build:ts:watch test:watch",
    "docs": "run-s 'docs:ae' 'docs:ad' 'docs:typedoc' 'readme' --print-label",
    "docs:ad": "../../scripts/api-documenter.mjs",
    "docs:ae": "../../scripts/api-extractor.mjs",
    "docs:typedoc": "../../scripts/typedoc.mjs",
    "format": "../../scripts/format.mjs",
    "lint": "eslint --config ../../config/eslint.cjs",
    "nuke": "npm run clean && rimraf node_modules 'package-lock.json'",
    "precommit": "npx lint-staged --config ../../config/lint-staged.cjs",
    "publint": "publint run .",
    "readme": "tsm ../../scripts/readme.ts eleventy-plugin-telegram",
    "size": "pkg-size ./lib --sort-by=brotli --ignore-files {*.d.ts,*.map}",
    "test": "node --test --experimental-test-coverage",
    "test:ci": "node --test --experimental-test-coverage --test-reporter=lcov --test-reporter-destination=lcov.info",
    "test:watch": "node --test --watch"
  },
  "dependencies": {
    "zod": "^3.23.0",
    "zod-validation-error": "^3.1.0"
  },
  "peerDependencies": {
    "@11ty/eleventy": ">=2.0.0 || 3.0.0-alpha.6",
    "debug": ">=4.0.0"
  },
  "devDependencies": {
    "@jackdbd/eleventy-test-utils": "*"
  }
}
