-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.39 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
{
"name": "twofactor_oath",
"version": "0.4.1",
"license": "AGPL-3.0-or-later",
"private": true,
"type": "module",
"scripts": {
"build": "vite build",
"dev": "vite build --mode development",
"watch": "vite build --mode development --watch",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"stylelint": "stylelint 'src/**/*.{css,scss,vue}'",
"stylelint:fix": "stylelint 'src/**/*.{css,scss,vue}' --fix",
"test": "vitest run",
"test:watch": "vitest watch"
},
"dependencies": {
"@chenfengyuan/vue-qrcode": "^2.0.0",
"@nextcloud/auth": "^2.5.3",
"@nextcloud/axios": "^2.5.2",
"@nextcloud/initial-state": "^3.0.0",
"@nextcloud/l10n": "^3.4.1",
"@nextcloud/logger": "^3.0.3",
"@nextcloud/password-confirmation": "^6.1.0",
"@nextcloud/router": "^3.1.0",
"@nextcloud/vue": "^9.9.0",
"pinia": "^4.0.2",
"vue": "^3.5.41"
},
"devDependencies": {
"@nextcloud/browserslist-config": "^3.1.2",
"@nextcloud/eslint-config": "^9.0.1",
"@nextcloud/stylelint-config": "^3.2.2",
"@nextcloud/vite-config": "^2.5.4",
"@vitejs/plugin-vue": "^6.0.8",
"@vue/test-utils": "^2.4.6",
"jsdom": "^29.1.1",
"stylelint": "^17.14.1",
"vite": "^7.1.10",
"vitest": "^4.1.10"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"engines": {
"node": "^24.0.0",
"npm": "^11.0.0"
}
}