zen-fs-webdav 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,63 @@
1
+ {
2
+ "name": "zen-fs-webdav",
3
+ "version": "0.1.0",
4
+ "description": "一个简单、现代的 WebDAV 客户端库,提供类似文件系统的 API",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "files": [
8
+ "dist",
9
+ "README.md",
10
+ "LICENSE"
11
+ ],
12
+ "scripts": {
13
+ "build": "tsc",
14
+ "build:umd": "tsup",
15
+ "build:all": "npm run build && npm run build:umd",
16
+ "test": "jest",
17
+ "lint": "eslint src --ext .ts",
18
+ "format": "prettier --write \"src/**/*.ts\"",
19
+ "prepublishOnly": "npm run build:all",
20
+ "clean": "rimraf dist"
21
+ },
22
+ "keywords": [
23
+ "webdav",
24
+ "filesystem",
25
+ "fs",
26
+ "client",
27
+ "api",
28
+ "browser",
29
+ "node"
30
+ ],
31
+ "author": "ZhuanZ",
32
+ "license": "MIT",
33
+ "repository": {
34
+ "type": "git",
35
+ "url": "https://github.com/ZhuanZ/zen-fs-webdav.git"
36
+ },
37
+ "bugs": {
38
+ "url": "https://github.com/ZhuanZ/zen-fs-webdav/issues"
39
+ },
40
+ "homepage": "https://github.com/ZhuanZ/zen-fs-webdav#readme",
41
+ "devDependencies": {
42
+ "@types/jest": "^29.5.0",
43
+ "@types/node": "^18.15.11",
44
+ "@typescript-eslint/eslint-plugin": "^5.57.1",
45
+ "@typescript-eslint/parser": "^5.57.1",
46
+ "@zenfs/core": "^2.3.3",
47
+ "eslint": "^8.38.0",
48
+ "jest": "^29.5.0",
49
+ "jest-environment-jsdom": "^29.5.0",
50
+ "prettier": "^2.8.7",
51
+ "rimraf": "^5.0.0",
52
+ "ts-jest": "^29.1.0",
53
+ "tsup": "^8.5.0",
54
+ "typescript": "^5.0.4"
55
+ },
56
+ "engines": {
57
+ "node": ">=14.0.0"
58
+ },
59
+ "dependencies": {
60
+ "fast-xml-parser": "^5.2.5",
61
+ "he": "^1.2.0"
62
+ }
63
+ }