-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.66 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.66 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
{
"name": "@nextcloud/calendar-availability-vue",
"version": "3.0.0",
"description": "Weekly calendar availability component for Nextcloud apps",
"type": "module",
"module": "dist/index.mjs",
"exports": {
".": {
"import": "./dist/index.mjs"
}
},
"scripts": {
"build": "vite build",
"watch": "vite build --watch",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --ext .js,.vue src",
"lint:fix": "eslint --ext .js,.vue src --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nextcloud/calendar-availability-vue.git"
},
"keywords": [
"nextcloud",
"calendar",
"caldav",
"availability",
"rfc7953"
],
"author": "Christoph Wurst",
"license": "MIT",
"bugs": {
"url": "https://github.com/nextcloud/calendar-availability-vue/issues"
},
"homepage": "https://github.com/nextcloud/calendar-availability-vue#readme",
"dependencies": {
"@nextcloud/logger": "^3.0.3",
"ical.js": "^2.2.1",
"icalzone": "^0.0.1",
"uuid": "^13.0.0",
"vue-material-design-icons": "^5.3.1"
},
"devDependencies": {
"@nextcloud/browserslist-config": "^3.1.2",
"@nextcloud/eslint-config": "^8.4.2",
"@nextcloud/l10n": "^1.4 || ^2.0 || ^3.0.0",
"@nextcloud/vite-config": "^2.4.0",
"@nextcloud/vue": "^9.5.0",
"sass": "^1.89.2",
"vite": "^6.4.1",
"vue": "^3.5.17"
},
"peerDependencies": {
"@nextcloud/l10n": "^1.4 || ^2.0 || ^3.0.0",
"@nextcloud/vue": "^9.5.0",
"vue": "^3.5.17"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"engines": {
"node": "^24.0.0",
"npm": "^11.3.0"
}
}