-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
98 lines (98 loc) · 2.7 KB
/
package.json
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
{
"name": "@nextcloud/upload",
"version": "1.6.1",
"description": "Nextcloud file upload client",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"author": "John Molakvoæ <skjnldsv@protonmail.com>",
"license": "AGPL-3.0-or-later",
"keywords": [
"nextcloud",
"webdav",
"client",
"upload",
"chunk"
],
"scripts": {
"build": "vite --mode production build",
"dev": "vite --mode development build",
"watch": "vite --mode development build --watch",
"build:doc": "typedoc --out dist/doc lib && touch dist/doc/.nojekyll",
"lint": "eslint --ext .js,.vue .",
"lint:fix": "eslint --ext .js,.vue --fix .",
"cypress": "cypress run --component",
"cypress:gui": "cypress open --component",
"test": "vitest run",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"l10n:extract": "node build/extract-l10n.js"
},
"repository": {
"type": "git",
"url": "https://github.com/skjnldsv/nextcloud-upload.git"
},
"bugs": {
"url": "https://github.com/skjnldsv/nextcloud-upload/issues"
},
"engines": {
"node": "^20.0.0",
"npm": "^10.0.0"
},
"homepage": "https://github.com/skjnldsv/nextcloud-upload",
"devDependencies": {
"@codecov/vite-plugin": "^1.2.1",
"@cypress/vue2": "^2.1.1",
"@nextcloud/eslint-config": "^8.4.1",
"@nextcloud/vite-config": "^1.3.0",
"@tsconfig/cypress": "^1.0.2",
"@types/node": "^22.9.0",
"@vitest/coverage-v8": "^2.1.4",
"@vue/tsconfig": "^0.5.1",
"blob-polyfill": "^9.0.20240710",
"cypress": "^13.15.2",
"cypress-file-upload": "^5.0.8",
"gettext-extractor": "^3.8.0",
"gettext-parser": "^8.0.0",
"jsdom": "^25.0.1",
"typedoc": "^0.26.11",
"typescript": "^5.6.3",
"vite": "^5.4.11",
"vitest": "^2.0.2",
"vue-material-design-icons": "^5.3.1",
"webdav": "^5.7.1"
},
"dependencies": {
"@nextcloud/auth": "^2.4.0",
"@nextcloud/axios": "^2.5.1",
"@nextcloud/capabilities": "^1.2.0",
"@nextcloud/dialogs": "^6.0.1",
"@nextcloud/files": "^3.9.1",
"@nextcloud/l10n": "^3.1.0",
"@nextcloud/logger": "^3.0.2",
"@nextcloud/paths": "^2.2.1",
"@nextcloud/router": "^3.0.0",
"@nextcloud/sharing": "^0.2.3",
"axios": "^1.7.7",
"axios-retry": "^4.5.0",
"crypto-browserify": "^3.12.1",
"p-cancelable": "^4.0.1",
"p-queue": "^8.0.0",
"simple-eta": "^3.0.2"
},
"peerDependencies": {
"@nextcloud/vue": "^8.0.0-beta || ^8.0.0",
"vue": "^2.7.16"
}
}