generated from obsidianmd/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
32 lines (32 loc) · 1.07 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
{
"name": "obsidian-ics",
"version": "1.9",
"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",
"dependencies": {
"moment-timezone": "^0.5.46",
"node-ical": "^0.20.1",
"obsidian-daily-notes-interface": "^0.9.4"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@types/node": "^22.10.7",
"builtin-modules": "4.0.0",
"esbuild": "0.24.2",
"eslint": "^9.18.0",
"globals": "^15.14.0",
"obsidian": "1.7.2",
"tslib": "2.8.1",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0"
}
}