-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
67 lines (67 loc) · 1.9 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
{
"name": "guests",
"description": "Create guest users which can only see files shared with them",
"version": "5.0.0",
"type": "module",
"author": "Robin Appelman <[email protected]>",
"contributors": [
"Robin Appelman <[email protected]>",
"John Molakvoæ <[email protected]>"
],
"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": {
"@nextcloud/browserslist-config": "^3.0.1",
"@nextcloud/eslint-config": "^8.4.1",
"@nextcloud/eslint-plugin": "^2.2.1",
"@nextcloud/stylelint-config": "^3.0.1",
"@nextcloud/vite-config": "^1.4.2",
"@vue/tsconfig": "^0.5.1",
"vite": "^5.4.10",
"vue-template-compiler": "^2.7.16"
},
"dependencies": {
"@mdi/svg": "^7.4.47",
"@nextcloud/axios": "^2.5.0",
"@nextcloud/dialogs": "^6.0.0",
"@nextcloud/event-bus": "^3.3.1",
"@nextcloud/l10n": "^3.1.0",
"@nextcloud/logger": "^3.0.2",
"@nextcloud/router": "^3.0.1",
"@nextcloud/sharing": "^0.2.3",
"@nextcloud/vue": "^8.17.1",
"email-validator": "^2.0.4",
"vue": "^2.7.16",
"vue-material-design-icons": "^5.3.1"
},
"engines": {
"node": "^20.0.0",
"npm": "^10.0.0"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
]
}