-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
77 lines (77 loc) · 2.11 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
68
69
70
71
72
73
74
75
76
77
{
"name": "@nextcloud/password-confirmation",
"version": "5.3.1",
"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.4.0",
"@nextcloud/axios": "^2.5.0",
"@nextcloud/dialogs": "^6.0.1",
"@nextcloud/l10n": "^3.1.0",
"@nextcloud/router": "^3.0.1"
},
"peerDependencies": {
"@nextcloud/vue": "^8.0.0",
"vue": "^2.7.16"
},
"devDependencies": {
"@nextcloud/browserslist-config": "^3.0.1",
"@nextcloud/eslint-config": "^8.3.0",
"@nextcloud/vite-config": "^1.2.5",
"@types/gettext-parser": "^4.0.4",
"@types/node": "^22.10.2",
"@types/node-gettext": "^3.0.6",
"@vue/tsconfig": "^0.5.1",
"gettext-extractor": "^3.8.0",
"gettext-parser": "^8.0.0",
"sass": "^1.77.6",
"typescript": "^5.4.3",
"vite": "^5.3.1"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"eslintConfig": {
"extends": [
"@nextcloud/eslint-config/typescript"
]
},
"engines": {
"node": "^20.0.0",
"npm": "^10.0.0"
}
}