-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) 路 3.49 KB
/
Copy pathpackage.json
File metadata and controls
119 lines (119 loc) 路 3.49 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "social",
"description": "Nextcloud becomes part of the federated social networks!",
"version": "0.26.73",
"authors": [
{
"name": "Benedikt Sch盲chner",
"email": "benedikt.schaechner@web.de",
"homepage": "https://benedikt.xn--schchner-2za.de"
}
],
"license": "agpl",
"private": true,
"scripts": {
"dev": "NODE_ENV=development webpack --config webpack.common.js",
"watch": "NODE_ENV=development webpack --progress --watch --config webpack.common.js",
"build": "NODE_ENV=production webpack --progress --config webpack.common.js",
"serve": "NODE_ENV=development webpack serve --progress --config webpack.common.js",
"lint": "eslint src tests/js tests/e2e *.js *.mjs",
"typecheck": "tsc -p jsconfig.json && node tools/typecheck.mjs",
"typecheck:baseline": "node tools/typecheck.mjs --update",
"lint:fix": "eslint src tests/js tests/e2e *.js *.mjs --fix",
"stylelint": "stylelint src css",
"stylelint:fix": "stylelint src css --fix",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"test:e2e": "playwright test -c tests/e2e/playwright.config.mjs"
},
"dependencies": {
"@nextcloud/auth": "^2.0.0",
"@nextcloud/axios": "2.6.0",
"@nextcloud/dialogs": "^7.5.0",
"@nextcloud/files": "^4.1.0",
"@nextcloud/initial-state": "^3.0.0",
"@nextcloud/l10n": "^3.4.1",
"@nextcloud/logger": "^3.0.3",
"@nextcloud/notify_push": "^1.4.0",
"@nextcloud/router": "^3.1.0",
"@nextcloud/vue": "^9.8.0",
"blurhash": "^2.0.5",
"debounce": "^3.0.0",
"dompurify": "^3.4.10",
"he": "^1.2.0",
"hls.js": "^1.7.3",
"linkify-plugin-mention": "^4.1.0",
"linkify-string": "^4.1.0",
"linkifyjs": "^4.1.0",
"mitt": "^3.0.1",
"pinia": "^4.0.3",
"tributejs": "^5.1.3",
"vue": "^3.5.43",
"vue-material-design-icons": "^5.2.0",
"vue-router": "^5.3.1"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"browser": {
"fs": false
},
"engines": {
"node": "^24.0.0",
"npm": "^11.3.0"
},
"devDependencies": {
"@babel/core": "^8.0.6",
"@discordapp/twemoji": "16.0.1",
"@nextcloud/babel-config": "^2.0.0",
"@nextcloud/browserslist-config": "^3.1.2",
"@nextcloud/eslint-config": "^9.0.1",
"@nextcloud/stylelint-config": "^3.2.2",
"@nextcloud/webpack-vue-config": "^7.0.4",
"@playwright/test": "^1.63.0",
"@vitejs/plugin-vue": "^6.0.9",
"@vitest/coverage-v8": "^5.0.1",
"@vue/compiler-sfc": "^3.5.43",
"@vue/test-utils": "^2.5.1",
"babel-loader": "^10.1.1",
"copy-webpack-plugin": "^14.0.0",
"css-loader": "^7.1.5",
"eslint": "^10.10.0",
"jsdom": "^30.1.1",
"node-polyfill-webpack-plugin": "^4.0.0",
"sass": "^1.104.1",
"sass-loader": "^17.0.1",
"style-loader": "^4.0.0",
"stylelint": "^17.15.0",
"stylelint-config-recommended-scss": "^17.0.1",
"stylelint-config-recommended-vue": "^2.0.0",
"terser-webpack-plugin": "^5.6.1",
"ts-loader": "^9.5.7",
"typescript": "^5.9.3",
"vite": "^8.3.0",
"vitest": "^5.0.0",
"vue-loader": "^17.4.2",
"vue-tsc": "^3.3.11",
"webpack": "^5.111.1",
"webpack-cli": "^7.2.3",
"webpack-dev-server": "^6.0.0"
},
"overrides": {
"@nextcloud/axios": "2.6.0",
"elliptic": "^6.6.1",
"fast-xml-parser": ">=5.7.0",
"joi": ">=18.2.8",
"uuid": "^14.0.0",
"@nextcloud/stylelint-config": {
"stylelint-config-recommended-vue": "$stylelint-config-recommended-vue"
},
"@nextcloud/vue": {
"@nextcloud/files": "$@nextcloud/files"
},
"@nextcloud/webpack-vue-config": {
"webpack-cli": "$webpack-cli"
},
"@babel/core": "^8.0.6"
}
}