-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.12 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.12 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
69
70
71
72
73
74
75
76
77
{
"name": "@nextcloud/password-confirmation",
"version": "5.3.2",
"description": "Password confirmation for Nextcloud",
"author": {
"name": "Nextcloud GmbH and Nextcloud contributors"
},
"type": "module",
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./style.css": "./dist/style.css",
"./dist/style.css": "./dist/style.css"
},
"files": [
"dist",
"LICENSES",
"CHANGELOG.md"
],
"scripts": {
"dev": "vite build --mode development",
"watch": "vite build --mode development --watch",
"build": "vite build --mode production",
"l10n:extract": "node build/extract-l10n.js",
"lint": "eslint --ignore-pattern dist/**/* .",
"lint:fix": "eslint --fix --ignore-pattern dist/**/* ."
},
"keywords": [
"nextcloud"
],
"homepage": "https://github.com/nextcloud-libraries/nextcloud-password-confirmation#readme",
"repository": "github:nextcloud-libraries/nextcloud-password-confirmation",
"bugs": "https://github.com/nextcloud-libraries/nextcloud-password-confirmation/issues",
"license": "MIT",
"dependencies": {
"@nextcloud/auth": "^2.6.0",
"@nextcloud/axios": "^2.6.0",
"@nextcloud/dialogs": "^6.4.2",
"@nextcloud/l10n": "^3.4.1",
"@nextcloud/router": "^3.1.0"
},
"peerDependencies": {
"@nextcloud/vue": "^8.23.0",
"vue": "^2.7.16"
},
"devDependencies": {
"@nextcloud/browserslist-config": "^3.1.2",
"@nextcloud/eslint-config": "^8.3.0",
"@nextcloud/vite-config": "^1.7.2",
"@types/gettext-parser": "^8.0.0",
"@types/node": "^22.19.15",
"@types/node-gettext": "^3.0.6",
"@vue/tsconfig": "^0.5.1",
"gettext-extractor": "^3.8.0",
"gettext-parser": "^8.0.0",
"sass": "^1.99.0",
"typescript": "^5.9.3",
"vite": "^7.3.1"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"eslintConfig": {
"extends": [
"@nextcloud/eslint-config/typescript"
]
},
"engines": {
"node": "^20.0.0 ||^22.0.0",
"npm": "^10.5.1"
}
}