{
  "name": "@mildshield14/ical-booker",
  "version": "1.1.1",
  "description": "A lightweight, modern CalDAV client for Node.js - discover calendars, check availability, and create bookings",
  "main": "./dist/lib/index.js",
  "types": "./dist/lib/index.d.ts",
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/lib/index.d.ts",
      "import": "./dist/lib/index.js",
      "require": "./dist/lib/index.js"
    }
  },
  "scripts": {
    "build": "tsc --emitDeclarationOnly && esbuild src/lib/index.ts --bundle --platform=node --target=node18 --format=esm --outfile=dist/lib/index.js --external:node-fetch --external:node-ical --external:ics --external:rrule --external:dotenv",
    "dev": "tsc --watch & tsc-alias --watch",
    "test": "node --test",
    "test:coverage": "c8 node --test",
    "lint": "eslint ./src/**/*.ts",
    "lint:fix": "eslint ./src/**/*.ts --fix",
    "format": "prettier --write ./src/**/*.ts",
    "prepublishOnly": "npm run build && npm test",
    "clean": "rm -rf dist"
  },
  "files": [
    "dist/**/*",
    "README.md",
    "LICENSE"
  ],
  "keywords": [
    "caldav",
    "calendar",
    "scheduling",
    "availability",
    "booking",
    "icloud",
    "google-calendar",
    "fastmail",
    "webdav",
    "ical",
    "busy-time",
    "free-busy",
    "appointment",
    "meeting"
  ],
  "author": {
    "name": "mildshield14",
    "email": "your-email@example.com"
  },
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/mildshield14/ical-booker.git"
  },
  "bugs": {
    "url": "https://github.com/mildshield14/ical-booker/issues"
  },
  "homepage": "https://github.com/mildshield14/ical-booker#readme",
  "dependencies": {
    "dotenv": "^17",
    "ics": "^3.8",
    "node-fetch": "^3",
    "node-ical": "^0.20.1",
    "rrule": "^2"
  },
  "engines": {
    "node": ">=18"
  },
  "devDependencies": {
    "@types/node": "^20.0.0",
    "@typescript-eslint/eslint-plugin": "^6.0.0",
    "@typescript-eslint/parser": "^6.0.0",
    "c8": "^8.0.0",
    "esbuild": "^0.25.5",
    "eslint": "^8.0.0",
    "prettier": "^3.0.0",
    "tsc-alias": "^1.8.16",
    "typescript": "^5.0.0"
  },
  "peerDependencies": {
    "typescript": ">=4.5.0"
  },
  "peerDependenciesMeta": {
    "typescript": {
      "optional": true
    }
  }
}
