|
1 | 1 | {
|
2 | 2 | "name": "@nextcloud/upload",
|
3 |
| - "version": "1.7.1", |
| 3 | + "version": "1.8.0", |
4 | 4 | "description": "Nextcloud file upload client",
|
| 5 | + "keywords": [ |
| 6 | + "nextcloud", |
| 7 | + "webdav", |
| 8 | + "client", |
| 9 | + "upload", |
| 10 | + "chunk" |
| 11 | + ], |
| 12 | + "homepage": "https://github.com/nextcloud-libraries/nextcloud-upload", |
| 13 | + "bugs": { |
| 14 | + "url": "https://github.com/nextcloud-libraries/nextcloud-upload/issues" |
| 15 | + }, |
| 16 | + "repository": { |
| 17 | + "type": "git", |
| 18 | + "url": "git+https://github.com/nextcloud-libraries/nextcloud-upload.git" |
| 19 | + }, |
| 20 | + "license": "AGPL-3.0-or-later", |
| 21 | + "author": "Nextcloud GmbH and Nextcloud contributors", |
5 | 22 | "type": "module",
|
6 |
| - "main": "dist/index.cjs", |
7 |
| - "module": "dist/index.js", |
8 |
| - "types": "dist/index.d.ts", |
9 | 23 | "exports": {
|
10 | 24 | ".": {
|
11 | 25 | "types": "./dist/index.d.ts",
|
12 | 26 | "import": "./dist/index.mjs",
|
13 | 27 | "require": "./dist/index.cjs"
|
14 | 28 | }
|
15 | 29 | },
|
| 30 | + "main": "dist/index.cjs", |
| 31 | + "module": "dist/index.js", |
| 32 | + "types": "dist/index.d.ts", |
16 | 33 | "files": [
|
17 | 34 | "dist"
|
18 | 35 | ],
|
19 |
| - "author": "John Molakvoæ <[email protected]>", |
20 |
| - "license": "AGPL-3.0-or-later", |
21 |
| - "keywords": [ |
22 |
| - "nextcloud", |
23 |
| - "webdav", |
24 |
| - "client", |
25 |
| - "upload", |
26 |
| - "chunk" |
27 |
| - ], |
28 | 36 | "scripts": {
|
29 | 37 | "build": "vite --mode production build",
|
30 |
| - "dev": "vite --mode development build", |
31 |
| - "watch": "vite --mode development build --watch", |
32 | 38 | "build:doc": "typedoc --out dist/doc lib && touch dist/doc/.nojekyll",
|
33 |
| - "lint": "eslint --ext .js,.vue .", |
34 |
| - "lint:fix": "eslint --ext .js,.vue --fix .", |
35 | 39 | "cypress": "cypress run --component",
|
36 | 40 | "cypress:gui": "cypress open --component",
|
| 41 | + "dev": "vite --mode development build", |
| 42 | + "l10n:extract": "node build/extract-l10n.js", |
| 43 | + "lint": "eslint --ext .js,.vue .", |
| 44 | + "lint:fix": "eslint --ext .js,.vue --fix .", |
37 | 45 | "test": "vitest run",
|
38 |
| - "test:watch": "vitest watch", |
39 | 46 | "test:coverage": "vitest run --coverage",
|
40 |
| - "l10n:extract": "node build/extract-l10n.js" |
41 |
| - }, |
42 |
| - "repository": { |
43 |
| - "type": "git", |
44 |
| - "url": "https://github.com/skjnldsv/nextcloud-upload.git" |
45 |
| - }, |
46 |
| - "bugs": { |
47 |
| - "url": "https://github.com/skjnldsv/nextcloud-upload/issues" |
| 47 | + "test:watch": "vitest watch", |
| 48 | + "watch": "vite --mode development build --watch" |
48 | 49 | },
|
49 |
| - "engines": { |
50 |
| - "node": "^20.0.0", |
51 |
| - "npm": "^10.0.0" |
| 50 | + "dependencies": { |
| 51 | + "@nextcloud/auth": "^2.4.0", |
| 52 | + "@nextcloud/axios": "^2.5.1", |
| 53 | + "@nextcloud/capabilities": "^1.2.0", |
| 54 | + "@nextcloud/dialogs": "^6.0.1", |
| 55 | + "@nextcloud/files": "^3.10.1", |
| 56 | + "@nextcloud/l10n": "^3.1.0", |
| 57 | + "@nextcloud/logger": "^3.0.2", |
| 58 | + "@nextcloud/paths": "^2.2.1", |
| 59 | + "@nextcloud/router": "^3.0.0", |
| 60 | + "@nextcloud/sharing": "^0.2.4", |
| 61 | + "axios": "^1.7.9", |
| 62 | + "axios-retry": "^4.5.0", |
| 63 | + "crypto-browserify": "^3.12.1", |
| 64 | + "p-cancelable": "^4.0.1", |
| 65 | + "p-queue": "^8.0.0", |
| 66 | + "simple-eta": "^3.0.2" |
52 | 67 | },
|
53 |
| - "homepage": "https://github.com/skjnldsv/nextcloud-upload", |
54 | 68 | "devDependencies": {
|
55 | 69 | "@codecov/vite-plugin": "^1.8.0",
|
56 | 70 | "@cypress/vue2": "^2.1.1",
|
|
73 | 87 | "vue-material-design-icons": "^5.3.1",
|
74 | 88 | "webdav": "^5.7.1"
|
75 | 89 | },
|
76 |
| - "dependencies": { |
77 |
| - "@nextcloud/auth": "^2.4.0", |
78 |
| - "@nextcloud/axios": "^2.5.1", |
79 |
| - "@nextcloud/capabilities": "^1.2.0", |
80 |
| - "@nextcloud/dialogs": "^6.0.1", |
81 |
| - "@nextcloud/files": "^3.10.1", |
82 |
| - "@nextcloud/l10n": "^3.1.0", |
83 |
| - "@nextcloud/logger": "^3.0.2", |
84 |
| - "@nextcloud/paths": "^2.2.1", |
85 |
| - "@nextcloud/router": "^3.0.0", |
86 |
| - "@nextcloud/sharing": "^0.2.4", |
87 |
| - "axios": "^1.7.9", |
88 |
| - "axios-retry": "^4.5.0", |
89 |
| - "crypto-browserify": "^3.12.1", |
90 |
| - "p-cancelable": "^4.0.1", |
91 |
| - "p-queue": "^8.0.0", |
92 |
| - "simple-eta": "^3.0.2" |
93 |
| - }, |
94 | 90 | "peerDependencies": {
|
95 | 91 | "@nextcloud/vue": "^8.0.0-beta || ^8.0.0",
|
96 | 92 | "vue": "^2.7.16"
|
| 93 | + }, |
| 94 | + "engines": { |
| 95 | + "node": "^20.0.0", |
| 96 | + "npm": "^10.0.0" |
97 | 97 | }
|
98 | 98 | }
|
0 commit comments