-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.2 KB
/
package.json
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
{
"name": "@fatrex/nextdav",
"version": "0.3.0",
"description": "A WebDav client for Node.js",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"test": "c8 ava",
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
"dev": "npm run build -- --watch",
"release": "release-it"
},
"keywords": [
"webdav",
"client",
"nextcloud",
"library"
],
"author": "Daniele Lenares <[email protected]>",
"license": "ISC",
"dependencies": {
"fast-xml-parser": "^4.3.6",
"got": "^12",
"http-proxy-agent": "^7.0.2",
"https-proxy-agent": "^7.0.4",
"roarr": "^7.21.1",
"socks-proxy-agent": "^8.0.2"
},
"devDependencies": {
"@types/node": "^20.11.30",
"ava": "^6.1.2",
"c8": "^9.1.0",
"prettier": "3.2.5",
"release-it": "^17.1.1",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"typescript": "^5.4.3",
"webdav-server": "^2.6.2"
},
"ava": {
"files": [
"test/**/*"
],
"concurrency": 0
}
}