-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.34 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.34 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
{
"name": "user_external",
"version": "3.6.0",
"private": true,
"description": "External user authentication backends for Nextcloud",
"homepage": "https://github.com/nextcloud/user_external",
"bugs": {
"url": "https://github.com/nextcloud/user_external/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/nextcloud/user_external"
},
"license": "AGPL-3.0-or-later",
"type": "module",
"scripts": {
"build": "vite --mode production build",
"dev": "export NODE_ENV=development; vite --mode development build",
"lint": "eslint --ext .js,.vue src",
"lint:fix": "eslint --ext .js,.vue src --fix",
"watch": "export NODE_ENV=development; vite --mode development build --watch"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"dependencies": {
"@nextcloud/axios": "^2.5.0",
"@nextcloud/dialogs": "^7.3.0",
"@nextcloud/initial-state": "^3.0.0",
"@nextcloud/l10n": "^3.4.1",
"@nextcloud/router": "^3.1.0",
"@nextcloud/vue": "^9.5.0",
"vue": "^3.5.29",
"vue-material-design-icons": "^5.3.0"
},
"devDependencies": {
"@nextcloud/browserslist-config": "^3.1.2",
"@nextcloud/vite-config": "^2.5.2",
"@vue/tsconfig": "^0.9.0",
"vite": "^7.3.1"
},
"engines": {
"node": "^20.19.0 || ^22.12.0 || ^24.0.0",
"npm": "^10.0.0"
}
}