-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
94 lines (94 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "logreader",
"type": "module",
"scripts": {
"build": "vite --mode production build",
"dev": "vite --mode development build",
"dev:watch": "vite --mode development build --watch",
"lint": "eslint src *.ts",
"lint:fix": "eslint --fix src *.ts",
"test": "TZ='Etc/GMT+1' vitest run",
"test:watch": "TZ='Etc/GMT+1' vitest watch",
"test:coverage": "TZ='Etc/GMT+1' vitest run --coverage"
},
"devDependencies": {
"@nextcloud/browserslist-config": "^3.0.1",
"@nextcloud/eslint-config": "^8.4.2",
"@nextcloud/vite-config": "^1.5.3",
"@pinia/testing": "^0.1.7",
"@vitest/coverage-istanbul": "^3.0.9",
"@vue/test-utils": "^1.3.6",
"@vue/tsconfig": "^0.5.1",
"eslint-plugin-chai-friendly": "^1.0.1",
"happy-dom": "^17.4.4",
"typescript": "^5.8.2",
"vite": "^6.2.2",
"vitest": "^3.0.2"
},
"engines": {
"node": "^20.0.0",
"npm": "^10.0.0"
},
"dependencies": {
"@highlightjs/vue-plugin": "^1.0.2",
"@mdi/svg": "^7.4.47",
"@nextcloud/axios": "^2.5.0",
"@nextcloud/dialogs": "^6.0.1",
"@nextcloud/initial-state": "^2.2.0",
"@nextcloud/l10n": "^3.2.0",
"@nextcloud/logger": "^3.0.2",
"@nextcloud/router": "^3.0.0",
"@nextcloud/typings": "^1.9.1",
"@nextcloud/vue": "^8.23.1",
"highlight.js": "^11.11.1",
"json-string-splitter": "^1.0.0",
"pinia": "^2.3.1",
"vue": "^2.7.15",
"vue-material-design-icons": "^5.3.1"
},
"eslintConfig": {
"ignorePatterns": [
"node_modules/",
"js/",
"lib/"
],
"extends": [
"@nextcloud/eslint-config/typescript"
],
"plugins": [
"chai-friendly"
],
"rules": {
"func-call-spacing": "off",
"@typescript-eslint/func-call-spacing": "error",
"no-unused-expressions": 0,
"chai-friendly/no-unused-expressions": 2
},
"overrides": [
{
"files": [
"./*.config.*",
"**/*.spec.*",
"**/*.test.*"
],
"rules": {
"n/no-unpublished-import": [
"off"
]
}
},
{
"files": [
"**/*.vue"
],
"rules": {
"n/no-missing-import": "off"
}
}
]
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"version": "5.0.0-dev.0"
}