mirror of
https://github.com/callumalpass/tasknotes.git
synced 2026-07-22 12:50:26 +00:00
- Add daily note template system with Obsidian variable support - Implement customizable task filename formats with live preview - Enhance Pomodoro timer with native task selection and persistence - Improve UI consistency and accessibility - Fix calendar selection visual issues - Remove redundant zettelid functionality
30 lines
812 B
JSON
30 lines
812 B
JSON
{
|
|
"name": "tasknotes",
|
|
"version": "0.7.0",
|
|
"description": "Comprehensive task and note management with calendar integration for Obsidian",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
|
|
"version": "node version-bump.mjs && git add manifest.json versions.json"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/date-fns": "^2.5.3",
|
|
"@types/node": "^16.11.6",
|
|
"@types/yaml": "^1.9.6",
|
|
"@typescript-eslint/eslint-plugin": "5.29.0",
|
|
"@typescript-eslint/parser": "5.29.0",
|
|
"builtin-modules": "3.3.0",
|
|
"esbuild": "0.17.3",
|
|
"obsidian": "latest",
|
|
"tslib": "2.4.0",
|
|
"typescript": "4.7.4"
|
|
},
|
|
"dependencies": {
|
|
"date-fns": "^2.30.0",
|
|
"yaml": "^2.3.1"
|
|
}
|
|
}
|