-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.98 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.98 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
86
87
88
89
90
91
92
{
"name": "end_to_end_encryption",
"version": "2.1.0-dev.0",
"private": true,
"description": "Provides the necessary endpoint to enable End-to-End encryption.",
"homepage": "https://github.com/nextcloud/end_to_end_encryption#readme",
"bugs": {
"url": "https://github.com/nextcloud/end_to_end_encryption/issues"
},
"license": "AGPL-3.0-or-later",
"author": "Nextcloud GmbH and Nextcloud contributors",
"type": "module",
"scripts": {
"build": "vite --mode production build",
"dev": "export NODE_ENV=development; vite --mode development build",
"postinstall": "patch-package && playwright install chromium-headless-shell",
"lint": "eslint",
"lint:fix": "eslint --fix",
"playwright": "playwright test",
"stylelint": "stylelint src",
"stylelint:fix": "stylelint src --fix",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:update-snapshots": "vitest run --update",
"test:watch": "vitest watch",
"ts:check": "vue-tsc --noEmit",
"watch": "export NODE_ENV=development; vite --mode development build --watch"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"dependencies": {
"@mdi/js": "^7.4.47",
"@mdi/svg": "^7.4.47",
"@nextcloud/auth": "^2.6.0",
"@nextcloud/axios": "^2.5.2",
"@nextcloud/browser-storage": "^0.5.0",
"@nextcloud/capabilities": "^1.2.1",
"@nextcloud/dialogs": "^7.3.0",
"@nextcloud/event-bus": "^3.3.3",
"@nextcloud/files": "^4.0.0",
"@nextcloud/initial-state": "^3.0.0",
"@nextcloud/l10n": "^3.4.0",
"@nextcloud/logger": "^3.0.2",
"@nextcloud/paths": "^3.1.0",
"@nextcloud/router": "^3.1.0",
"@nextcloud/sharing": "^0.4.0",
"@nextcloud/vue": "^9.6.0",
"@peculiar/x509": "^1.14.3",
"@rxliuli/vista": "^0.4.9",
"@vueuse/core": "^14.2.1",
"asn1js": "^3.0.7",
"bip39": "^3.1.0",
"debounce": "^3.0.0",
"fast-xml-parser": "^5.7.1",
"fflate": "^0.8.2",
"pkijs": "^3.4.0",
"safe-stable-stringify": "^2.5.0",
"vue": "^3.5.22",
"vue-material-design-icons": "^5.3.1",
"webdav": "^5.9.0"
},
"devDependencies": {
"@nextcloud/browserslist-config": "^3.1.2",
"@nextcloud/e2e-test-server": "^0.4.0",
"@nextcloud/eslint-config": "^9.0.0-rc.8",
"@nextcloud/stylelint-config": "^3.2.1",
"@nextcloud/typings": "^1.10.0",
"@nextcloud/vite-config": "^2.5.2",
"@playwright/test": "^1.59.1",
"@relative-ci/agent": "^4.3.1",
"@testing-library/jest-dom": "^6.9.1",
"@types/wicg-file-system-access": "^2023.10.7",
"@vitest/browser-playwright": "^4.1.4",
"@vitest/coverage-v8": "^4.1.2",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.9.1",
"core-js": "^3.49.0",
"eslint": "^9.38.0",
"msw": "^2.13.4",
"patch-package": "^8.0.1",
"stylelint": "^17.8.0",
"vite": "^7.3.2",
"vite-plugin-static-copy": "^4.0.1",
"vitest": "^4.0.15",
"vue-tsc": "^3.2.6"
},
"engines": {
"node": "^24.0.0",
"npm": "^11.3.0"
}
}