-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.5 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.5 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
{
"name": "password_policy",
"version": "6.0.0-dev.0",
"private": true,
"description": "Password Policy for nextcloud",
"homepage": "https://github.com/nextcloud/password_policy#readme",
"bugs": {
"url": "https://github.com/nextcloud/password_policy/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nextcloud/password_policy.git"
},
"license": "AGPL-3.0-or-later",
"author": "Nextcloud GmbH and Nextcloud contributors",
"type": "module",
"scripts": {
"build": "vite --mode production build",
"dev": "vite --mode development build",
"lint": "eslint --ext .js,.vue src",
"lint:fix": "eslint --ext .js,.vue src --fix",
"stylelint": "stylelint src/**/*.scss src/**/*.vue src/**/*.vue",
"stylelint:fix": "stylelint src/**/*.scss src/**/*.vue --fix",
"watch": "vite --mode development build --watch"
},
"dependencies": {
"@nextcloud/capabilities": "^1.2.0",
"@nextcloud/dialogs": "^6.3.2",
"@nextcloud/initial-state": "^3.0.0",
"@nextcloud/l10n": "^3.4.1",
"@nextcloud/vue": "^8.22.0",
"vue": "^2.7.16",
"vue-material-design-icons": "^5.3.1"
},
"devDependencies": {
"@nextcloud/browserslist-config": "^3.1.2",
"@nextcloud/eslint-config": "^8.4.2",
"@nextcloud/stylelint-config": "^3.1.1",
"@nextcloud/vite-config": "^1.7.2",
"@vue/tsconfig": "^0.5.1",
"sass": "^1.97.1",
"typescript": "^5.9.3",
"vite": "^7.3.2"
},
"engines": {
"node": "^24.0.0",
"npm": "^11.3.0"
}
}