@stsdti/funky-calendar 0.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,46 @@
1
+ {
2
+ "name": "@stsdti/funky-calendar",
3
+ "description": "A library for Vue3 used for Vacation planing. It shows a full year of months and allows creating events",
4
+ "author": "STS - DTI",
5
+ "version": "0.0.4",
6
+ "files": [
7
+ "dist"
8
+ ],
9
+ "module": "./dist/funky-calendar.es.js",
10
+ "exports": {
11
+ ".": {
12
+ "import": "./dist/funky-calendar.es.js"
13
+ },
14
+ "./package.json": "./package.json",
15
+ "./dist/*": "./dist/*"
16
+ },
17
+ "type": "module",
18
+ "scripts": {
19
+ "start": "npm run dev",
20
+ "dev": "vite --open",
21
+ "build": "vite build",
22
+ "build:watch": "vite build -w",
23
+ "preview": "vite preview",
24
+ "build:package": "vite build --mode package"
25
+ },
26
+ "dependencies": {
27
+ "@tabler/icons-vue": "^3.19.0",
28
+ "animejs": "^3.2.2",
29
+ "@vueuse/core": "^11.1.0",
30
+ "bootstrap": "^5.3.3",
31
+ "date-fns": "^4.1.0",
32
+ "lodash": "^4.17.21",
33
+ "vue": "^3.4.37",
34
+ "vue-tippy": "^6.4.4"
35
+ },
36
+ "devDependencies": {
37
+ "@vitejs/plugin-vue": "^5.1.2",
38
+ "vite": "^5.4.1",
39
+ "vue-router": "^4.2.4"
40
+ },
41
+ "peerDependencies": {
42
+ "axios": "^1.6.0",
43
+ "vue": "^3.4.37",
44
+ "vue-router": "^4.2.4"
45
+ }
46
+ }