-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
72 lines (72 loc) · 2.31 KB
/
package.json
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
{
"private": true,
"name": "end_to_end_encryption",
"version": "2.0.0-dev.0",
"description": "Provides the necessary endpoint to enable End-to-End encryption.",
"author": "Nextcloud GmbH and Nextcloud contributors",
"license": "AGPL-3.0-or-later",
"type": "module",
"scripts": {
"build": "vite --mode production build",
"dev": "export NODE_ENV=development; vite --mode development build",
"watch": "export NODE_ENV=development; vite --mode development build --watch",
"lint": "eslint --ext .js,.vue src",
"lint:fix": "eslint --ext .js,.vue src --fix",
"stylelint": "stylelint src",
"stylelint:fix": "stylelint src --fix",
"test": "vitest run",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"test:update-snapshots": "vitest run --update"
},
"dependencies": {
"@mdi/svg": "^7.4.47",
"@nextcloud/auth": "^2.3.0",
"@nextcloud/axios": "^2.5.1",
"@nextcloud/dialogs": "^5.3.7",
"@nextcloud/files": "^3.10.1",
"@nextcloud/initial-state": "^2.2.0",
"@nextcloud/l10n": "^3.1.0",
"@nextcloud/logger": "^3.0.2",
"@nextcloud/router": "^3.0.1",
"@nextcloud/vue": "^8.21.0",
"@peculiar/x509": "^1.12.3",
"debounce": "^2.1.0",
"fast-xml-parser": "^4.5.0",
"uuid": "^10.0.0",
"vue": "^2.7.16",
"vue-material-design-icons": "^5.3.1",
"webdav": "^5.7.1"
},
"devDependencies": {
"@nextcloud/babel-config": "^1.2.0",
"@nextcloud/browserslist-config": "^3.0.1",
"@nextcloud/eslint-config": "^8.4.1",
"@nextcloud/stylelint-config": "^3.0.1",
"@nextcloud/vite-config": "^1.4.2",
"@nextcloud/webpack-vue-config": "^6.0.1",
"@relative-ci/agent": "^4.2.14",
"@testing-library/jest-dom": "^6.6.3",
"@vitejs/plugin-vue2": "^2.3.3",
"@vitest/coverage-v8": "^2.1.8",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
"eslint": "^8.57.1",
"jest": "^29.7.0",
"jest-serializer-vue": "^3.1.0",
"jsdom": "^26.0.0",
"vitest": "^2.1.8",
"vue-jest": "^3.0.7"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"bugs": {
"url": "https://github.com/nextcloud/end_to_end_encryption/issues"
},
"homepage": "https://github.com/nextcloud/end_to_end_encryption#readme",
"engines": {
"node": "^20.0.0",
"npm": "^10.0.0"
}
}