Skip to content

Commit 0a6311d

Browse files
committed
chore: make package.json consistent and update authors
- Use consistent `package.json` order like all other libraries. - Update the `AUTHORS.md` - Adjust package author field to be consistent Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
1 parent 9c81db1 commit 0a6311d

2 files changed

Lines changed: 42 additions & 41 deletions

File tree

AUTHORS.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,16 @@
44
-->
55
# Authors
66

7-
- Christoph Wurst <christoph@winzerhof-wurst.at>
7+
- Andy Scherzinger <info@andy-scherzinger.de>
88
- Christopher Ng <chrng8@gmail.com>
9+
- Christoph Wurst <christoph@winzerhof-wurst.at>
10+
- Cyrille Bollu <StCyr@users.noreply.github.com>
911
- Daniel Kesselberg <mail@danielkesselberg.de>
12+
- Dennis Vestergaard Værum <github@varum.dk>
1013
- Ferdinand Thiessen <opensource@fthiessen.de>
11-
- Julius Härtl <jus@bitgrid.net>
1214
- John Molakvoæ <skjnldsv@protonmail.com>
15+
- Julius Härtl <jus@bitgrid.net>
1316
- Louis Chemineau <louis@chmn.me>
17+
- Max <max@nextcloud.com>
18+
- Tobias Speicher <rootcommander@gmail.com>
1419
- Varun Patil <varunpatil@ucla.edu>

package.json

Lines changed: 35 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,22 @@
22
"name": "@nextcloud/files",
33
"version": "3.10.2",
44
"description": "Nextcloud files utils",
5+
"keywords": [
6+
"nextcloud",
7+
"files",
8+
"library"
9+
],
10+
"homepage": "https://github.com/nextcloud-libraries/nextcloud-files",
11+
"bugs": {
12+
"url": "https://github.com/nextcloud-libraries/nextcloud-files/issues"
13+
},
14+
"repository": {
15+
"type": "git",
16+
"url": "https://github.com/nextcloud-libraries/nextcloud-files.git"
17+
},
18+
"license": "AGPL-3.0-or-later",
19+
"author": "Nextcloud GmbH and Nextcloud contributors",
520
"type": "module",
6-
"main": "dist/index.cjs",
7-
"module": "dist/index.mjs",
8-
"types": "dist/index.d.ts",
921
"exports": {
1022
".": {
1123
"types": "./dist/index.d.ts",
@@ -18,43 +30,36 @@
1830
"require": "./dist/dav.cjs"
1931
}
2032
},
33+
"main": "dist/index.cjs",
34+
"module": "dist/index.mjs",
35+
"types": "dist/index.d.ts",
2136
"files": [
2237
"dist"
2338
],
24-
"author": "Christoph Wurst <christoph@winzerhof-wurst.at>",
25-
"contributors": [
26-
"John Molakvoæ <skjnldsv@protonmail.com>",
27-
"Ferdinand Thiessen <opensource@fthiessen.de>"
28-
],
29-
"license": "AGPL-3.0-or-later",
30-
"keywords": [
31-
"nextcloud",
32-
"files",
33-
"library"
34-
],
3539
"scripts": {
3640
"build": "vite --mode production build",
3741
"build:doc": "typedoc --out dist/doc lib/dav/index.ts lib/index.ts && touch dist/doc/.nojekyll",
3842
"dev": "vite --mode development build",
39-
"watch": "vite --mode development build --watch",
4043
"lint": "eslint .",
4144
"lint:fix": "eslint --fix .",
4245
"test": "vitest run",
46+
"test:coverage": "vitest run --coverage",
4347
"test:watch": "vitest watch",
44-
"test:coverage": "vitest run --coverage"
45-
},
46-
"repository": {
47-
"type": "git",
48-
"url": "https://github.com/nextcloud-libraries/nextcloud-files.git"
48+
"watch": "vite --mode development build --watch"
4949
},
50-
"bugs": {
51-
"url": "https://github.com/nextcloud-libraries/nextcloud-files/issues"
52-
},
53-
"engines": {
54-
"node": "^20.0.0",
55-
"npm": "^10.0.0"
50+
"dependencies": {
51+
"@nextcloud/auth": "^2.5.1",
52+
"@nextcloud/capabilities": "^1.2.0",
53+
"@nextcloud/l10n": "^3.3.0",
54+
"@nextcloud/logger": "^3.0.2",
55+
"@nextcloud/paths": "^2.2.1",
56+
"@nextcloud/router": "^3.0.1",
57+
"@nextcloud/sharing": "^0.2.4",
58+
"cancelable-promise": "^4.3.1",
59+
"is-svg": "^5.1.0",
60+
"typescript-event-target": "^1.1.1",
61+
"webdav": "^5.8.0"
5662
},
57-
"homepage": "https://github.com/nextcloud-libraries/nextcloud-files",
5863
"devDependencies": {
5964
"@codecov/vite-plugin": "^1.9.1",
6065
"@nextcloud/eslint-config": "^8.4.2",
@@ -72,17 +77,8 @@
7277
"vite": "^6.3.5",
7378
"vitest": "^3.0.4"
7479
},
75-
"dependencies": {
76-
"@nextcloud/auth": "^2.5.1",
77-
"@nextcloud/capabilities": "^1.2.0",
78-
"@nextcloud/l10n": "^3.3.0",
79-
"@nextcloud/logger": "^3.0.2",
80-
"@nextcloud/paths": "^2.2.1",
81-
"@nextcloud/router": "^3.0.1",
82-
"@nextcloud/sharing": "^0.2.4",
83-
"cancelable-promise": "^4.3.1",
84-
"is-svg": "^5.1.0",
85-
"typescript-event-target": "^1.1.1",
86-
"webdav": "^5.8.0"
80+
"engines": {
81+
"node": "^20.0.0",
82+
"npm": "^10.0.0"
8783
}
8884
}

0 commit comments

Comments
 (0)