forked from obsidian-community/obsidian-full-calendar
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.54 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
48
49
50
51
52
53
54
55
{
"name": "obsidian-full-calendar",
"version": "0.6.1",
"description": "Obsidian integration with Full Calendar (fullcalendar.io)",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"lint": "prettier --check 'src/**/*.ts*'",
"fix": "prettier --write 'src/**/*.ts*'",
"compile": "tsc -noEmit --skipLibCheck",
"prepare": "husky install"
},
"keywords": [],
"author": {
"name": "Davis Haupt",
"email": "[email protected]",
"url": "https://davi.sh"
},
"license": "MIT",
"devDependencies": {
"@types/co": "^4.6.3",
"@types/color": "^3.0.3",
"@types/dav": "^1.7.4",
"@types/luxon": "^2.0.9",
"@types/node": "^16.11.6",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"builtin-modules": "^3.2.0",
"esbuild": "0.13.12",
"husky": "^7.0.4",
"obsidian": "^0.12.17",
"prettier": "2.5.1",
"tslib": "2.3.1",
"typescript": "4.4.4"
},
"dependencies": {
"@fullcalendar/core": "^5.10.1",
"@fullcalendar/daygrid": "^5.10.1",
"@fullcalendar/google-calendar": "^5.10.1",
"@fullcalendar/icalendar": "^5.10.1",
"@fullcalendar/interaction": "^5.10.1",
"@fullcalendar/list": "^5.10.1",
"@fullcalendar/timegrid": "^5.10.1",
"color": "^4.2.1",
"dav": "^1.8.0",
"ical.js": "^1.4.0",
"luxon": "^2.3.0",
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}