{
  "name": "tsdav",
  "version": "2.1.3",
  "description": "WebDAV, CALDAV, and CARDDAV client for Nodejs and the Browser",
  "keywords": [
    "dav",
    "caldav",
    "carddav",
    "webdav",
    "ical",
    "vcard",
    "addressbook",
    "calendar",
    "calendars",
    "contacts",
    "contact",
    "sync",
    "nodejs",
    "browser",
    "typescript"
  ],
  "homepage": "https://tsdav.vercel.app/",
  "repository": "https://github.com/natelindev/tsdav",
  "license": "MIT",
  "author": "linlilulll@gmail.com",
  "main": "dist/tsdav.cjs.js",
  "module": "dist/tsdav.esm.js",
  "types": "dist/tsdav.d.ts",
  "files": [
    "dist",
    "package.json"
  ],
  "dependencies": {
    "base-64": "1.0.0",
    "cross-fetch": "4.0.0",
    "debug": "4.4.0",
    "xml-js": "1.6.11"
  },
  "devDependencies": {
    "@rollup/plugin-commonjs": "28.0.1",
    "@rollup/plugin-node-resolve": "15.3.0",
    "@rollup/plugin-terser": "0.4.4",
    "@rollup/plugin-typescript": "12.1.1",
    "@types/base-64": "1.0.2",
    "@types/debug": "4.1.12",
    "@types/jest": "29.5.12",
    "@types/node": "22.5.4",
    "@typescript-eslint/eslint-plugin": "8.5.0",
    "@typescript-eslint/parser": "8.5.0",
    "copyfiles": "2.4.1",
    "cross-env": "7.0.3",
    "dotenv": "16.4.7",
    "eslint": "9.16.0",
    "eslint-config-airbnb": "19.0.4",
    "eslint-config-airbnb-typescript": "18.0.0",
    "eslint-config-prettier": "9.1.0",
    "eslint-module-utils": "2.12.0",
    "eslint-plugin-import": "2.31.0",
    "eslint-plugin-prettier": "5.2.1",
    "jest": "29.7.0",
    "prettier": "3.4.2",
    "rimraf": "6.0.1",
    "rollup": "4.21.2",
    "rollup-plugin-dts": "6.1.1",
    "rollup-plugin-node-builtins": "2.1.2",
    "rollup-plugin-polyfill-node": "0.13.0",
    "sort-package-json": "2.12.0",
    "ts-jest": "29.2.5",
    "tslib": "2.8.1",
    "typescript": "5.7.2"
  },
  "engines": {
    "node": ">=10"
  },
  "scripts": {
    "build": "yarn -s clean && rollup -c rollup.config.mjs && copyfiles package.json LICENSE README.md ./dist && rimraf ./dist/ts",
    "clean": "rimraf dist*",
    "test": "echo \"temporarily disabled\" && exit 0",
    "test:apple": "jest --testPathPattern=src/__tests__/integration/apple --runInBand",
    "test:baikal": "jest --testPathPattern=src/__tests__/integration/baikal --runInBand",
    "test:fastmail": "jest --testPathPattern=src/__tests__/integration/fastmail --runInBand",
    "test:google": "jest --testPathPattern=src/__tests__/integration/google --runInBand",
    "test:nextcloud": "jest --testPathPattern=src/__tests__/integration/nextcloud --runInBand",
    "test:unit": "jest --testPathPattern=src/__tests__/unit",
    "test:zoho": "jest --testPathPattern=src/__tests__/integration/zoho --runInBand",
    "typecheck": "tsc --noEmit",
    "watch": "tsc --watch --outDir ./dist"
  }
}