-
-
Notifications
You must be signed in to change notification settings - Fork 155
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.49 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 3.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "webdav",
"version": "5.9.0",
"description": "WebDAV client for NodeJS",
"exports": {
".": {
"browser": "./dist/web/index.js",
"react-native": "./dist/react-native/index.js",
"types": "./dist/node/index.d.ts",
"default": "./dist/node/index.js"
},
"./react-native": "./dist/react-native/index.js",
"./web": "./dist/web/index.js",
"./dist/*": "./dist/*"
},
"react-native": "./dist/react-native/index.js",
"type": "module",
"types": "./dist/node/index.d.ts",
"scripts": {
"build": "npm run clean && run-p build:node build:web",
"build:node": "tsc",
"build:web": "webpack --mode production --config webpack.config.cjs",
"clean": "rimraf dist web",
"dev": "nodemon -e ts,js --exec 'npm run build' --ignore 'dist/' --ignore 'web/'",
"format": "prettier --write '{source,test}/**/*.{js,ts}'",
"prepublishOnly": "npm run build",
"test": "run-s test:node test:web test:format",
"test:format": "prettier --check '{source,test}/**/*.{js,ts}'",
"test:node": "vitest --watch=false --project node-unit",
"test:node:watch": "vitest --watch=true --project node-unit",
"test:web": "npm run clean && npm run build:web && concurrently -k -s first 'npm run test:web:server' 'npm run test:web:specs'",
"test:web:server": "npx -y tsx ./test/server.web.ts",
"test:web:specs": "vitest --watch=false --project browser"
},
"files": [
"dist/",
"test/server/",
"*.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/perry-mitchell/webdav-client.git"
},
"keywords": [
"webdav",
"client",
"remote",
"sync"
],
"engines": {
"node": ">=14"
},
"lint-staged": {
"{source,test}/**/*.{js,ts}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"author": "Perry Mitchell <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/perry-mitchell/webdav-client/issues"
},
"homepage": "https://github.com/perry-mitchell/webdav-client#readme",
"dependencies": {
"@buttercup/fetch": "^0.2.1",
"base-64": "^1.0.0",
"byte-length": "^1.0.2",
"entities": "^6.0.1",
"fast-xml-parser": "^5.3.4",
"hot-patcher": "^2.0.1",
"layerr": "^3.0.0",
"md5": "^2.3.0",
"minimatch": "^9.0.5",
"nested-property": "^4.0.0",
"node-fetch": "^3.3.2",
"path-posix": "^1.0.0",
"url-join": "^5.0.0",
"url-parse": "^1.5.10"
},
"devDependencies": {
"@babel/core": "^7.27.4",
"@babel/preset-env": "^7.27.2",
"@babel/preset-typescript": "^7.27.1",
"@types/he": "^1.2.3",
"@types/node": "^22.15.30",
"@types/url-parse": "^1.4.11",
"@vitest/browser": "^3.2.2",
"babel-loader": "^10.0.0",
"babel-plugin-transform-async-to-promises": "^0.8.18",
"buffer-equals": "^2.0.0",
"concurrently": "^9.1.2",
"copy-dir": "^1.3.0",
"directory-exists": "^2.0.1",
"exists-file": "^3.0.2",
"get-port": "^7.1.0",
"husky": "^4.3.8",
"lint-staged": "^16.1.0",
"mkdirp": "^3.0.1",
"nock": "^14.0.5",
"nodemon": "^3.1.10",
"npm-run-all": "^4.1.5",
"playwright": "^1.52.0",
"prettier": "^3.5.3",
"resolve-typescript-plugin": "^2.0.1",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vitest": "^3.2.3",
"wait-on": "^8.0.3",
"webdav-server": "^2.6.2",
"webpack": "^5.99.9",
"webpack-cli": "^6.0.1",
"webpack-merge": "^6.0.1"
}
}