@full-ui/headless-calendar 7.0.0-beta.5

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,40 @@
1
+ {
2
+ "name": "@full-ui/headless-calendar",
3
+ "version": "7.0.0-beta.5",
4
+ "keywords": [
5
+ "headless",
6
+ "calendar",
7
+ "event"
8
+ ],
9
+ "title": "Headless Calendar Library",
10
+ "description": "Headless calendar library by the makers of FullCalendar",
11
+ "type": "module",
12
+ "homepage": "https://fullcalendar.io",
13
+ "bugs": "https://fullcalendar.io/reporting-bugs",
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "https://github.com/fullcalendar/fullcalendar.git",
17
+ "directory": "packages/headless-calendar"
18
+ },
19
+ "license": "MIT",
20
+ "author": {
21
+ "name": "Adam Shaw",
22
+ "email": "arshaw@arshaw.com",
23
+ "url": "http://arshaw.com/"
24
+ },
25
+ "copyright": "2025 Adam Shaw",
26
+ "types": "./esm/index.d.ts",
27
+ "module": "./esm/index.js",
28
+ "main": "./cjs/index.cjs",
29
+ "exports": {
30
+ "./package.json": "./package.json",
31
+ ".": {
32
+ "import": {
33
+ "types": "./esm/index.d.ts",
34
+ "default": "./esm/index.js"
35
+ },
36
+ "require": "./cjs/index.cjs"
37
+ }
38
+ },
39
+ "sideEffects": false
40
+ }