-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 2.98 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 2.98 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@nextcloud/upload",
"version": "1.11.1",
"description": "Nextcloud file upload client",
"keywords": [
"nextcloud",
"webdav",
"client",
"upload",
"chunk"
],
"homepage": "https://github.com/nextcloud-libraries/nextcloud-upload",
"bugs": {
"url": "https://github.com/nextcloud-libraries/nextcloud-upload/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nextcloud-libraries/nextcloud-upload.git"
},
"license": "AGPL-3.0-or-later",
"author": "Nextcloud GmbH and Nextcloud contributors",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "vite --mode production build",
"build:doc": "typedoc --out dist/doc lib && touch dist/doc/.nojekyll",
"prerelease:format-changelog": "node build/format-changelog.mjs",
"cypress": "cypress run --component",
"cypress:gui": "cypress open --component",
"dev": "vite --mode development build",
"l10n:extract": "node build/extract-l10n.js",
"lint": "eslint --ext .js,.ts,.vue .",
"lint:fix": "eslint --ext .js,.ts,.vue --fix .",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest watch",
"watch": "vite --mode development build --watch"
},
"dependencies": {
"@nextcloud/auth": "^2.5.3",
"@nextcloud/axios": "^2.5.2",
"@nextcloud/capabilities": "^1.2.1",
"@nextcloud/dialogs": "^6.4.2",
"@nextcloud/files": "^3.12.2",
"@nextcloud/l10n": "^3.4.1",
"@nextcloud/logger": "^3.0.3",
"@nextcloud/paths": "^3.1.0",
"@nextcloud/router": "^3.1.0",
"@nextcloud/sharing": "^0.4.0",
"axios": "^1.14.0",
"axios-retry": "^4.5.0",
"crypto-browserify": "^3.12.1",
"p-cancelable": "^4.0.1",
"p-queue": "^9.1.2",
"typescript-event-target": "^1.1.2"
},
"devDependencies": {
"@cypress/vue2": "^2.1.1",
"@nextcloud/eslint-config": "^8.4.2",
"@nextcloud/vite-config": "^1.7.2",
"@nextcloud/vue": "^8.37.0",
"@tsconfig/cypress": "^1.0.5",
"@types/node": "^25.5.2",
"@vitest/coverage-v8": "^4.1.3",
"@vue/tsconfig": "^0.9.1",
"blob-polyfill": "^9.0.20240710",
"cypress": "^15.13.0",
"cypress-file-upload": "^5.0.8",
"gettext-extractor": "^4.0.6",
"gettext-parser": "^9.0.2",
"jsdom": "^27.4.0",
"typedoc": "^0.28.18",
"typescript": "^5.9.3",
"vite": "^7.3.2",
"vitest": "^4.0.17",
"vue-material-design-icons": "^5.3.1",
"webdav": "^5.9.0"
},
"peerDependencies": {
"@nextcloud/vue": "^8.0.0",
"vue": "^2.7.16"
},
"engines": {
"node": "^20.0.0 || ^22.0.0 || ^24.0.0"
},
"devEngines": {
"packageManager": [{
"name": "npm",
"version": "^11.3.0"
}],
"runtime": {
"name": "node",
"version": "^24"
}
}
}