Init repo

This commit is contained in:
2025-01-14 13:21:53 +01:00
commit fc48be9407
8 changed files with 1312 additions and 0 deletions

23
package.json Normal file
View File

@@ -0,0 +1,23 @@
{
"name": "obsidian-tasks-reminder",
"version": "0.0.1",
"description": "The utility which scans Obsidian Tasks and triggers proper notification about them",
"main": "index.ts",
"scripts": {
"start": "tsx src/index.ts",
"build": "tsc && tsc-alias"
},
"author": "Bartłomiej Pluta <noreply.git@mx.bartlomiejpluta.com>",
"license": "ISC",
"bin": {
"obsidian-tasks-reminder": "./dist/index.js"
},
"devDependencies": {
"@types/node": "^22.9.0",
"tsc-alias": "^1.8.10",
"tsx": "^4.19.2",
"typescript": "^5.6.3"
},
"dependencies": {
}
}