-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
73 lines (73 loc) · 1.85 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@filen/webdav",
"version": "0.2.64",
"description": "Filen WebDAV",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"private": false,
"scripts": {
"test": "jest --forceExit ./__tests__",
"lint": "eslint src/**/* --ext .js,.jsx,.ts,.tsx",
"emitTypes": "tsc --emitDeclarationOnly",
"tsc": "tsc --build",
"clear": "rimraf ./dist",
"build": "npm run clear && npm run lint && npm run tsc",
"dev": "tsx ./dev/index.ts",
"yalc": "npm run build && yalc push",
"install:filen": "npm install @filen/sdk@latest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FilenCloudDienste/filen-webdav.git"
},
"keywords": [
"filen"
],
"engines": {
"node": ">=20"
},
"author": "Filen",
"license": "AGPLv3",
"bugs": {
"url": "https://github.com/FilenCloudDienste/filen-webdav/issues"
},
"homepage": "https://filen.io",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/express": "^4.17.21",
"@types/fs-extra": "^11.0.4",
"@types/lodash": "^4.14.202",
"@types/mime-types": "^2.1.4",
"@types/picomatch": "^3.0.1",
"@types/uuid": "^10.0.0",
"@types/write-file-atomic": "^4.0.3",
"@types/xml2js": "^0.4.14",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"tsx": "^4.11.0",
"typescript": "^5.3.3"
},
"dependencies": {
"@filen/sdk": "^0.1.191",
"body-parser": "^1.20.2",
"express": "^4.19.2",
"express-rate-limit": "^7.4.0",
"fs-extra": "^11.2.0",
"js-xxhash": "^4.0.0",
"mime-types": "^2.1.35",
"node-cache": "^5.1.2",
"picomatch": "^4.0.2",
"pino": "^9.4.0",
"rotating-file-stream": "^3.2.3",
"selfsigned": "^2.4.1",
"uuid": "^10.0.0",
"write-file-atomic": "^5.0.1",
"xml-js-builder": "^1.0.3",
"xml2js": "^0.6.2"
}
}