-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.23 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.23 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
{
"name": "integration_jmapc",
"description": "JMAP Connector",
"version": "1.0.0-alpha",
"author": "Sebastian Krupinski <krupinski01@gmail.com> (https://github.com/SebastianKrupinski/)",
"license": "AGPL-3.0-or-later",
"private": true,
"type": "module",
"scripts": {
"build": "vite --mode production build",
"dev": "vite --mode development build",
"watch": "vite --mode development build --watch",
"lint": "eslint --ext .js,.vue src",
"lint:fix": "eslint --ext .js,.vue src --fix",
"stylelint": "stylelint src/**/*.scss src/**/*.vue src/**/*.vue",
"stylelint:fix": "stylelint src/**/*.scss src/**/*.vue --fix"
},
"engines": {
"node": "^20.0.0",
"npm": "^9.0.0"
},
"dependencies": {
"@nextcloud/auth": "^2.1.0",
"@nextcloud/axios": "^2.4.0",
"@nextcloud/initial-state": "^2.1.0",
"@nextcloud/l10n": "^2.1.0",
"@nextcloud/logger": "^2.5.0",
"@nextcloud/vue": "9.0.0-rc.2",
"vue": "^3.4.0",
"vue-material-design-icons": "^5.2.0"
},
"devDependencies": {
"@nextcloud/browserslist-config": "^3.0.1",
"@nextcloud/eslint-config": "^8.4.2",
"@nextcloud/stylelint-config": "^3.1.0",
"@vitejs/plugin-vue": "^5.0.0",
"@vue/tsconfig": "^0.5.1",
"sass": "^1.89.0",
"typescript": "^5.8.3",
"vite": "^6.3.5"
}
}