-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.04 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.04 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
{
"name": "@nextcloud/password-confirmation",
"version": "6.0.0-rc.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.5.1",
"@nextcloud/axios": "^2.5.1",
"@nextcloud/l10n": "^3.3.0",
"@nextcloud/logger": "^3.0.2",
"@nextcloud/router": "^3.0.1",
"@nextcloud/vue": "^9.0.0-rc.2",
"vue": "^3.5.16"
},
"devDependencies": {
"@nextcloud/browserslist-config": "^3.0.1",
"@nextcloud/eslint-config": "^9.0.0-rc.1",
"@nextcloud/vite-config": "^2.3.2",
"@types/gettext-parser": "^8.0.0",
"@types/node": "^22.15.30",
"@vitest/coverage-v8": "^3.2.2",
"@vue/tsconfig": "^0.7.0",
"gettext-extractor": "^3.8.0",
"gettext-parser": "^8.0.0",
"happy-dom": "^17.6.3",
"sass": "^1.89.2",
"typedoc": "^0.28.5",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vitest": "^3.1.3"
},
"engines": {
"node": "^20.0.0",
"npm": "^10.0.0"
}
}