28 lines
654 B
JSON
28 lines
654 B
JSON
{
|
|
"name": "obsidian-reminder-notifier",
|
|
"version": "0.1.0",
|
|
"description": "Obsidian plugin for note-based reminders and external notifications.",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs --watch",
|
|
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production"
|
|
},
|
|
"keywords": [
|
|
"obsidian",
|
|
"reminders",
|
|
"notifications",
|
|
"telegram",
|
|
"ntfy"
|
|
],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/node": "^20.11.30",
|
|
"builtin-modules": "^3.3.0",
|
|
"esbuild": "^0.21.5",
|
|
"obsidian": "^1.5.12",
|
|
"tslib": "^2.6.2",
|
|
"typescript": "^5.4.5"
|
|
}
|
|
}
|