-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.22 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.22 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
78
79
80
81
82
83
84
85
{
"name": "@nextcloud/password-confirmation",
"version": "6.1.0",
"description": "Password confirmation for Nextcloud",
"keywords": [
"nextcloud"
],
"homepage": "https://github.com/nextcloud-libraries/nextcloud-password-confirmation#readme",
"bugs": "https://github.com/nextcloud-libraries/nextcloud-password-confirmation/issues",
"repository": "github:nextcloud-libraries/nextcloud-password-confirmation",
"license": "MIT",
"author": {
"name": "Nextcloud GmbH and Nextcloud contributors"
},
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs"
},
"./style.css": "./dist/style.css"
},
"main": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"LICENSES",
"CHANGELOG.md"
],
"scripts": {
"build": "vite build --mode production",
"build:doc": "typedoc",
"dev": "vite build --mode development",
"l10n:extract": "node build/extract-l10n.js",
"lint": "eslint",
"lint:fix": "eslint --fix",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"watch": "vite build --mode development --watch"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"dependencies": {
"@nextcloud/auth": "^2.6.0",
"@nextcloud/axios": "^2.6.0",
"@nextcloud/l10n": "^3.4.1",
"@nextcloud/logger": "^3.0.3",
"@nextcloud/router": "^3.1.0",
"@nextcloud/vue": "^9.6.0",
"vue": "^3.5.33"
},
"devDependencies": {
"@nextcloud/browserslist-config": "^3.1.2",
"@nextcloud/eslint-config": "^9.0.0-rc.9",
"@nextcloud/vite-config": "^2.5.0",
"@types/gettext-parser": "^9.0.0",
"@types/node": "^25.6.0",
"@vitest/coverage-v8": "^4.1.5",
"@vue/tsconfig": "^0.9.1",
"gettext-extractor": "^4.0.6",
"gettext-parser": "^9.0.2",
"happy-dom": "^20.9.0",
"sass": "^1.99.0",
"typedoc": "^0.28.19",
"typescript": "^6.0.3",
"vite": "^7.3.2",
"vitest": "^4.0.7"
},
"engines": {
"node": "^20.0.0 || ^22.0.0 || ^24.0.0"
},
"devEngines": {
"packageManager": [
{
"name": "npm",
"version": "^11.3.0"
}
],
"runtime": {
"name": "node",
"version": "^24.0.0"
}
}
}