forked from fullcalendar/fullcalendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.17 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
{
"name": "fullcalendar",
"version": "6.1.8",
"title": "FullCalendar Standard Bundle",
"description": "Easily render a full-sized drag & drop calendar with a combination of standard plugins",
"homepage": "https://fullcalendar.io/docs/initialize-globals",
"dependencies": {
"@fullcalendar/core": "~6.1.8",
"@fullcalendar/daygrid": "~6.1.8",
"@fullcalendar/interaction": "~6.1.8",
"@fullcalendar/list": "~6.1.8",
"@fullcalendar/multimonth": "~6.1.8",
"@fullcalendar/timegrid": "~6.1.8"
},
"devDependencies": {
"@fullcalendar/standard-scripts": "*"
},
"scripts": {
"build": "standard-scripts pkg:build",
"clean": "standard-scripts pkg:clean",
"lint": "eslint ."
},
"type": "module",
"tsConfig": {
"extends": "@fullcalendar/standard-scripts/config/tsconfig.browser.json",
"compilerOptions": {
"rootDir": "./src",
"outDir": "./dist/.tsout"
},
"include": [
"./src/**/*"
]
},
"buildConfig": {
"exports": {
".": { "iife": true }
},
"iifeGlobals": {
".": "FullCalendar",
"*": ""
}
},
"publishConfig": {
"directory": "./dist",
"linkDirectory": true
}
}