mirror of
https://github.com/pdriggett/practice-planner.git
synced 2026-07-22 07:47:14 +00:00
Obsidian community plugin that creates one markdown note per week under <Folder>/<YYYY>/<YYYY>-Www.md. Week start day is configurable; weeks that cross a year boundary stay under the year they started. Includes settings tab (folder, week-start day, default skills) and commands to open this/next/previous week's plan.
29 lines
730 B
JSON
29 lines
730 B
JSON
{
|
|
"name": "practice-planner",
|
|
"version": "0.1.0",
|
|
"description": "Weekly Music Practice Planner 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": [
|
|
"obsidian",
|
|
"music",
|
|
"practice",
|
|
"planner"
|
|
],
|
|
"author": "Patrick Driggett",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/node": "^16.11.6",
|
|
"@typescript-eslint/eslint-plugin": "5.29.0",
|
|
"@typescript-eslint/parser": "5.29.0",
|
|
"builtin-modules": "3.3.0",
|
|
"esbuild": "^0.28.1",
|
|
"obsidian": "latest",
|
|
"tslib": "2.4.0",
|
|
"typescript": "4.7.4"
|
|
}
|
|
}
|