|
2 | 2 | "name": "@nextcloud/files", |
3 | 3 | "version": "3.10.2", |
4 | 4 | "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", |
5 | 20 | "type": "module", |
6 | | - "main": "dist/index.cjs", |
7 | | - "module": "dist/index.mjs", |
8 | | - "types": "dist/index.d.ts", |
9 | 21 | "exports": { |
10 | 22 | ".": { |
11 | 23 | "types": "./dist/index.d.ts", |
|
18 | 30 | "require": "./dist/dav.cjs" |
19 | 31 | } |
20 | 32 | }, |
| 33 | + "main": "dist/index.cjs", |
| 34 | + "module": "dist/index.mjs", |
| 35 | + "types": "dist/index.d.ts", |
21 | 36 | "files": [ |
22 | 37 | "dist" |
23 | 38 | ], |
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 | | - ], |
35 | 39 | "scripts": { |
36 | 40 | "build": "vite --mode production build", |
37 | 41 | "build:doc": "typedoc --out dist/doc lib/dav/index.ts lib/index.ts && touch dist/doc/.nojekyll", |
38 | 42 | "dev": "vite --mode development build", |
39 | | - "watch": "vite --mode development build --watch", |
40 | 43 | "lint": "eslint .", |
41 | 44 | "lint:fix": "eslint --fix .", |
42 | 45 | "test": "vitest run", |
| 46 | + "test:coverage": "vitest run --coverage", |
43 | 47 | "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" |
49 | 49 | }, |
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" |
56 | 62 | }, |
57 | | - "homepage": "https://github.com/nextcloud-libraries/nextcloud-files", |
58 | 63 | "devDependencies": { |
59 | 64 | "@codecov/vite-plugin": "^1.9.1", |
60 | 65 | "@nextcloud/eslint-config": "^8.4.2", |
|
72 | 77 | "vite": "^6.3.5", |
73 | 78 | "vitest": "^3.0.4" |
74 | 79 | }, |
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" |
87 | 83 | } |
88 | 84 | } |
0 commit comments