-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.93 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.93 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
{
"name": "guests",
"description": "Create guest users which can only see files shared with them",
"version": "4.7.0-dev.0",
"type": "module",
"author": "Robin Appelman <robin@icewind.nl>",
"contributors": [
"Robin Appelman <robin@icewind.nl>",
"John Molakvoæ <skjnldsv@protonmail.com>"
],
"keywords": [
"nextcloud",
"guests",
"app",
"vuejs"
],
"bugs": {
"url": "https://github.com/nextcloud/guests/issues"
},
"repository": {
"url": "https://github.com/nextcloud/guests",
"type": "git"
},
"homepage": "https://github.com/nextcloud/guests",
"license": "agpl",
"private": true,
"scripts": {
"build": "vite build --mode production",
"dev": "vite build --mode development",
"watch": "vite build --mode development --watch",
"lint": "eslint --ext .js,.ts,.vue src",
"lint:fix": "eslint --ext .js,.ts,.vue src --fix",
"stylelint": "stylelint css/*.css css/*.scss src/**/*.vue",
"stylelint:fix": "stylelint css/*.css css/*.scss src/**/*.vue --fix"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@nextcloud/browserslist-config": "^3.1.2",
"@nextcloud/stylelint-config": "^3.2.1",
"@nextcloud/typings": "^1.10.0",
"@nextcloud/vite-config": "^2.5.2",
"@vue/tsconfig": "^0.9.1",
"vite": "^7.3.2"
},
"dependencies": {
"@mdi/svg": "^7.4.47",
"@nextcloud/axios": "^2.5.2",
"@nextcloud/dialogs": "^7.3.0",
"@nextcloud/eslint-config": "^9.0.0-rc.9",
"@nextcloud/event-bus": "^3.3.3",
"@nextcloud/initial-state": "^3.0.0",
"@nextcloud/l10n": "^3.4.1",
"@nextcloud/logger": "^3.0.3",
"@nextcloud/router": "^3.1.0",
"@nextcloud/sharing": "^0.4.0",
"@nextcloud/vue": "^9.6.0",
"email-validator": "^2.0.4",
"vue": "^3.5.30",
"vue-material-design-icons": "^5.3.1"
},
"engines": {
"node": "^24.0.0",
"npm": "^11.3.0"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
]
}