-
Notifications
You must be signed in to change notification settings - Fork 195
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.25 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.25 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
{
"name": "nextcloud-news",
"description": "An RSS/Atom feed reader",
"main": "js/news-main.mjs",
"scripts": {
"prebuild": "npm ci",
"build": "vite --mode production build",
"dev": "vite --mode development build",
"watch": "vite --mode development build --watch",
"lint": "eslint --ext .js,.vue,.ts src tests",
"lint:fix": "eslint --ext .js,.vue,.ts src tests --fix",
"stylelint": "stylelint 'css/*.css' 'css/*.scss' 'src/**/*.scss' 'src/**/*.vue'",
"stylelint:fix": "stylelint 'css/*.css' 'css/*.scss' 'src/**/*.scss' 'src/**/*.vue' --fix",
"test": "vitest run",
"test:coverage": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/nextcloud/news"
},
"keywords": [
"rss",
"atom",
"feed",
"reader",
"nextcloud",
"app"
],
"author": "Benjamin Brahmer",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/nextcloud/news/issues"
},
"engines": {
"node": "^24.0.0",
"npm": "^11.3.0"
},
"resolutions": {
"natives": "1.1.3"
},
"private": true,
"homepage": "https://github.com/nextcloud/news",
"type": "module",
"dependencies": {
"@nextcloud/axios": "^2.5.2",
"@nextcloud/browser-storage": "^0.5.0",
"@nextcloud/dialogs": "^7.3.0",
"@nextcloud/event-bus": "^3.3.3",
"@nextcloud/initial-state": "^3.0.0",
"@nextcloud/l10n": "^3.4.1",
"@nextcloud/moment": "^1.3.5",
"@nextcloud/password-confirmation": "^6.1.0",
"@nextcloud/router": "^3.1.0",
"@nextcloud/vue": "^9.6.0",
"@vueuse/core": "^14.2.1",
"lodash": "^4.17.23",
"vue": "^3.5.32",
"vue-material-design-icons": "^5.3.1",
"vue-router": "^5.0.4",
"vuex": "^4.1.0"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"devDependencies": {
"@nextcloud/browserslist-config": "^3.1.2",
"@nextcloud/eslint-config": "^9.0.0-rc.8",
"@nextcloud/stylelint-config": "^3.2.1",
"@nextcloud/vite-config": "^2.5.2",
"@types/lodash": "^4.17.24",
"@types/node": "^25.5.2",
"@vitest/coverage-istanbul": "^4.1.2",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.9.1",
"jsdom": "^29.0.1",
"regenerator-runtime": "^0.14.1",
"vite": "^7.3.2",
"vitest": "^4.0.2"
}
}