@nextcloud/files 3.0.0-beta.11 → 3.0.0-beta.13
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/README.md +2 -1
- package/dist/dav/dav.d.ts +46 -0
- package/dist/dav/davPermissions.d.ts +6 -0
- package/dist/dav/davProperties.d.ts +57 -0
- package/dist/fileAction.d.ts +3 -3
- package/dist/files/folder.d.ts +1 -1
- package/dist/files/node.d.ts +8 -2
- package/dist/files/nodeData.d.ts +12 -3
- package/dist/humanfilesize.d.ts +1 -0
- package/dist/index.cjs +68 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.ts +11 -4
- package/dist/index.mjs +391 -0
- package/dist/index.mjs.map +1 -0
- package/dist/newFileMenu.d.ts +3 -3
- package/dist/permissions.d.ts +3 -5
- package/dist/vendor.LICENSE.txt +1 -0
- package/package.json +40 -35
- package/dist/index.esm.js +0 -772
- package/dist/index.esm.js.map +0 -1
- package/dist/index.js +0 -895
- package/dist/index.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,14 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nextcloud/files",
|
|
3
|
-
"version": "3.0.0-beta.
|
|
3
|
+
"version": "3.0.0-beta.13",
|
|
4
4
|
"description": "Nextcloud files utils",
|
|
5
|
-
"
|
|
6
|
-
"
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.cjs",
|
|
7
|
+
"module": "dist/index.mjs",
|
|
7
8
|
"types": "dist/index.d.ts",
|
|
8
9
|
"exports": {
|
|
9
10
|
".": {
|
|
10
|
-
"
|
|
11
|
-
"
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/index.mjs",
|
|
13
|
+
"require": "./dist/index.cjs"
|
|
12
14
|
}
|
|
13
15
|
},
|
|
14
16
|
"files": [
|
|
@@ -16,7 +18,8 @@
|
|
|
16
18
|
],
|
|
17
19
|
"author": "Christoph Wurst <christoph@winzerhof-wurst.at>",
|
|
18
20
|
"contributors": [
|
|
19
|
-
"John Molakvoæ <skjnldsv@protonmail.com>"
|
|
21
|
+
"John Molakvoæ <skjnldsv@protonmail.com>",
|
|
22
|
+
"Ferdinand Thiessen <opensource@fthiessen.de>"
|
|
20
23
|
],
|
|
21
24
|
"license": "AGPL-3.0-or-later",
|
|
22
25
|
"keywords": [
|
|
@@ -25,49 +28,51 @@
|
|
|
25
28
|
"library"
|
|
26
29
|
],
|
|
27
30
|
"scripts": {
|
|
28
|
-
"build": "
|
|
31
|
+
"build": "vite --mode production build",
|
|
29
32
|
"build:doc": "typedoc --out dist/doc lib && touch dist/doc/.nojekyll",
|
|
30
|
-
"dev": "
|
|
31
|
-
"watch": "
|
|
32
|
-
"
|
|
33
|
-
"
|
|
34
|
-
"test
|
|
33
|
+
"dev": "vite --mode development build",
|
|
34
|
+
"dev:watch": "vite --mode development build --watch",
|
|
35
|
+
"lint": "eslint .",
|
|
36
|
+
"lint:fix": "eslint --fix .",
|
|
37
|
+
"test": "vitest run",
|
|
38
|
+
"test:watch": "vitest watch",
|
|
39
|
+
"test:coverage": "vitest run --coverage"
|
|
35
40
|
},
|
|
36
41
|
"repository": {
|
|
37
42
|
"type": "git",
|
|
38
|
-
"url": "https://github.com/nextcloud/nextcloud-files.git"
|
|
43
|
+
"url": "https://github.com/nextcloud-libraries/nextcloud-files.git"
|
|
39
44
|
},
|
|
40
45
|
"bugs": {
|
|
41
|
-
"url": "https://github.com/nextcloud/nextcloud-files/issues"
|
|
46
|
+
"url": "https://github.com/nextcloud-libraries/nextcloud-files/issues"
|
|
42
47
|
},
|
|
43
48
|
"engines": {
|
|
44
49
|
"node": "^20.0.0",
|
|
45
50
|
"npm": "^9.0.0"
|
|
46
51
|
},
|
|
47
|
-
"homepage": "https://github.com/nextcloud/nextcloud-files",
|
|
52
|
+
"homepage": "https://github.com/nextcloud-libraries/nextcloud-files",
|
|
48
53
|
"devDependencies": {
|
|
49
|
-
"@
|
|
50
|
-
"@babel/core": "^7.18.5",
|
|
51
|
-
"@babel/preset-env": "^7.18.2",
|
|
52
|
-
"@babel/preset-typescript": "^7.17.12",
|
|
54
|
+
"@nextcloud/eslint-config": "^8.3.0-beta.2",
|
|
53
55
|
"@nextcloud/typings": "^1.7.0",
|
|
54
|
-
"@
|
|
55
|
-
"@rollup/plugin-
|
|
56
|
-
"@rollup/plugin-
|
|
57
|
-
"@rollup/plugin-
|
|
58
|
-
"@
|
|
59
|
-
"@types/node": "^20.
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
"rollup": "^3.
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
"
|
|
56
|
+
"@nextcloud/vite-config": "^1.0.0-beta.18",
|
|
57
|
+
"@rollup-extras/plugin-clean": "^1.3.6",
|
|
58
|
+
"@rollup/plugin-commonjs": "^25.0.3",
|
|
59
|
+
"@rollup/plugin-node-resolve": "^15.1.0",
|
|
60
|
+
"@rollup/plugin-typescript": "^11.1.2",
|
|
61
|
+
"@types/node": "^20.4.5",
|
|
62
|
+
"@vitest/coverage-istanbul": "^0.33.0",
|
|
63
|
+
"fast-xml-parser": "^4.2.6",
|
|
64
|
+
"rollup": "^3.27.0",
|
|
65
|
+
"tslib": "^2.6.1",
|
|
66
|
+
"typedoc": "^0.24.8",
|
|
67
|
+
"typescript": "^5.0.4",
|
|
68
|
+
"vite": "^4.4.7",
|
|
69
|
+
"vitest": "^0.33.0"
|
|
67
70
|
},
|
|
68
71
|
"dependencies": {
|
|
69
|
-
"@nextcloud/auth": "^2.
|
|
70
|
-
"@nextcloud/l10n": "^2.
|
|
71
|
-
"@nextcloud/logger": "^2.5.0"
|
|
72
|
+
"@nextcloud/auth": "^2.1.0",
|
|
73
|
+
"@nextcloud/l10n": "^2.2.0",
|
|
74
|
+
"@nextcloud/logger": "^2.5.0",
|
|
75
|
+
"@nextcloud/router": "^2.1.2",
|
|
76
|
+
"webdav": "^5.2.3"
|
|
72
77
|
}
|
|
73
78
|
}
|