UNPKG

tsdav

Version:

WebDAV, CALDAV, and CARDDAV client for Nodejs and the Browser

89 lines 2.81 kB
{ "name": "tsdav", "version": "2.1.5", "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.1.0", "debug": "4.4.1", "xml-js": "1.6.11" }, "devDependencies": { "@rollup/plugin-commonjs": "28.0.5", "@rollup/plugin-node-resolve": "16.0.1", "@rollup/plugin-terser": "0.4.4", "@rollup/plugin-typescript": "12.1.2", "@types/base-64": "1.0.2", "@types/debug": "4.1.12", "@types/jest": "30.0.0", "@types/node": "24.0.3", "@typescript-eslint/eslint-plugin": "8.34.1", "@typescript-eslint/parser": "8.34.1", "copyfiles": "2.4.1", "cross-env": "7.0.3", "dotenv": "16.5.0", "eslint": "9.25.1", "eslint-config-airbnb": "19.0.4", "eslint-config-airbnb-typescript": "18.0.0", "eslint-config-prettier": "10.1.5", "eslint-module-utils": "2.12.0", "eslint-plugin-import": "2.31.0", "eslint-plugin-prettier": "5.5.0", "jest": "30.0.0", "prettier": "3.5.3", "rimraf": "6.0.1", "rollup": "4.43.0", "rollup-plugin-dts": "6.2.1", "rollup-plugin-node-builtins": "2.1.2", "rollup-plugin-polyfill-node": "0.13.0", "sort-package-json": "3.2.1", "ts-jest": "29.4.0", "tslib": "2.8.1", "typescript": "5.8.3" }, "engines": { "node": ">=10" }, "scripts": { "build": "pnpm -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" } }