Files
obsidian-notif/package.json
T

30 lines
793 B
JSON
Raw Permalink Normal View History

2026-06-27 15:05:31 +08:00
{
"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",
2026-06-27 15:12:40 +08:00
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"test": "node scripts/run-tests.mjs",
"release": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/create-release.ps1"
2026-06-27 15:05:31 +08:00
},
"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"
}
}