34 lines
892 B
JSON
34 lines
892 B
JSON
{
|
|
"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": {
|
|
"grammar": "peggy -c grammar/task.js",
|
|
"start": "npm run grammar && tsx src/index.ts",
|
|
"build": "npm run grammar && 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": {
|
|
"@types/express": "^5.0.2",
|
|
"commander": "^13.0.0",
|
|
"cron": "^4.3.1",
|
|
"dayjs": "^1.11.13",
|
|
"express": "^5.1.0",
|
|
"moment": "^2.30.1",
|
|
"peggy": "^4.2.0",
|
|
"rrule": "^2.8.1",
|
|
"yaml": "^2.7.0"
|
|
}
|
|
}
|