generated from obsidianmd/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
35 lines (35 loc) · 1.11 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
{
"name": "obsidian-ics",
"version": "1.6.7",
"description": "Adds events from calendar ics published on the web to daily note on demand. Daily Note or Periodic Notes plugins: specifically it gets the date to search for events during from the currently open daily note.",
"main": "dist/main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"dev-build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs dev-build",
"version": "node version-bump.mjs && git add manifest.json versions.json"
},
"keywords": [],
"author": "",
"license": "MIT",
"overrides": {
"node-ical": {
"rrule": "2.6.4"
}
},
"dependencies": {
"moment-timezone": "^0.5.43",
"node-ical": "^0.17.1",
"obsidian-daily-notes-interface": "^0.9.4"
},
"devDependencies": {
"@types/node": "20.8.7",
"@typescript-eslint/eslint-plugin": "6.8.0",
"@typescript-eslint/parser": "6.8.0",
"builtin-modules": "3.3.0",
"esbuild": "0.19.5",
"obsidian": "1.4.11",
"tslib": "2.6.2",
"typescript": "5.2.2"
}
}