-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
58 lines (58 loc) · 1.55 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
{
"private": true,
"name": "files_downloadlimit",
"description": "Nextcloud link share download counter.",
"version": "4.0.0",
"license": "AGPL-3.0-or-later",
"author": "Nextcloud GmbH and Nextcloud contributors",
"homepage": "https://github.com/nextcloud/files_downloadlimit",
"keywords": [
"nextcloud",
"sharing",
"link",
"counter",
"download"
],
"bugs": {
"url": "https://github.com/nextcloud/files_downloadlimit/issues"
},
"repository": {
"url": "https://github.com/nextcloud/files_downloadlimit",
"type": "git"
},
"type": "module",
"scripts": {
"dev": "vite build --mode development",
"watch": "vite build --mode development --watch",
"build": "vite build --mode production",
"lint": "eslint --ext .js,.vue src",
"lint:fix": "eslint --ext .js,.vue src --fix"
},
"dependencies": {
"@nextcloud/auth": "^2.4.0",
"@nextcloud/axios": "^2.5.0",
"@nextcloud/dialogs": "^5.3.7",
"@nextcloud/initial-state": "^2.2.0",
"@nextcloud/l10n": "^3.1.0",
"@nextcloud/logger": "^3.0.2",
"@nextcloud/router": "^3.0.1",
"@nextcloud/sharing": "^0.2.3",
"@nextcloud/vue": "^8.19.0",
"vue": "^2.7.16",
"vue-frag": "^1.4.3"
},
"engines": {
"node": "^20.0.0",
"npm": "^10.0.0"
},
"devDependencies": {
"@nextcloud/browserslist-config": "^3.0.1",
"@nextcloud/eslint-config": "^8.4.1",
"@nextcloud/vite-config": "^1.4.2",
"@vue/tsconfig": "^0.5.1",
"vite": "^5.4.9"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
]
}