-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.5 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.5 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
{
"name": "cage",
"version": "0.2.0",
"description": "Client-side age encryption viewer/editor for Nextcloud",
"license": "AGPL-3.0-or-later",
"author": "Jakub Suchy",
"type": "module",
"private": true,
"scripts": {
"build": "vite build",
"dev": "vite build --mode development",
"watch": "vite build --mode development --watch",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run"
},
"dependencies": {
"@nextcloud/auth": "^2.0.0",
"@nextcloud/dialogs": "^7.0.0",
"@nextcloud/logger": "^3.0.0",
"@nextcloud/files": "^4.0.0",
"@nextcloud/l10n": "^3.0.0",
"@nextcloud/router": "^3.0.0",
"@nextcloud/vue": "^9.6.0",
"age-encryption": "^0.3.0",
"vue": "^3.5.30",
"vue-material-design-icons": "^5.3.0"
},
"devDependencies": {
"@nextcloud/browserslist-config": "^3.1.2",
"@nextcloud/eslint-config": "9.0.0-rc.9",
"@nextcloud/stylelint-config": "^3.1.1",
"@nextcloud/vite-config": "^2.5.2",
"@vitest/coverage-v8": "^4.1.0",
"@vitest/ui": "^4.1.0",
"@vitest/web-worker": "^4.1.0",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.9.0",
"eslint": "^10.0.3",
"@eslint/js": "^10.0.1",
"happy-dom": "^20.8.4",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vitest": "^4.1.0"
},
"engines": {
"node": "^20.0.0 || ^22.0.0",
"npm": "^10.0.0"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
]
}