- New gtd-matrix block: 2x2 prioritisation grid with axis headers (Urgent / Not urgent x Important / Not important) - Quadrants from two configurable tags (urgent-tag default 'urgent', important-tag default 'important'): both -> Do First; important -> Schedule; urgent -> Delegate; neither -> Eliminate (default bucket) - Completed to-dos excluded entirely (prioritisation view, not tracking; kanban Done is where completions live); to-dos only; matrix note excluded; warns when both axis tags are identical - Same scope/todos/sort-type/sort/card-detail options as kanban; cards reuse kanban rendering (compact, recurrence mark, drilldown) - Quadrant colour accents: red Do First, blue Schedule, amber Delegate, grey Eliminate - SPEC roadmap restructured: matrix shipped as v0.4.0 (views axis); drag-and-drop + create-from-view clustered as the v0.5.0+ authoring epic with multi-board refresh and trigger/target questions recorded - Version 0.4.0; 11 new tests (80 total); README documented
42 lines
1.1 KiB
JSON
42 lines
1.1 KiB
JSON
{
|
|
"name": "joplin-plugin-gtd-calendar",
|
|
"version": "0.4.0",
|
|
"scripts": {
|
|
"test": "jest",
|
|
"dist": "webpack --env joplin-plugin-config=buildMain && webpack --env joplin-plugin-config=buildExtraScripts && webpack --env joplin-plugin-config=createArchive",
|
|
"prepare": "npm run dist",
|
|
"update": "npm install -g generator-joplin && yo joplin --node-package-manager npm --update --force",
|
|
"updateVersion": "webpack --env joplin-plugin-config=updateVersion"
|
|
},
|
|
"license": "MIT",
|
|
"keywords": [
|
|
"joplin-plugin"
|
|
],
|
|
"devDependencies": {
|
|
"@types/jest": "^30.0.0",
|
|
"@types/node": "^18.7.13",
|
|
"chalk": "^4.1.0",
|
|
"copy-webpack-plugin": "^11.0.0",
|
|
"fs-extra": "^10.1.0",
|
|
"glob": "^8.0.3",
|
|
"jest": "^30.4.2",
|
|
"on-build-webpack": "^0.1.0",
|
|
"prettier": "^2.5.1",
|
|
"tar": "^6.1.11",
|
|
"ts-jest": "^29.4.11",
|
|
"ts-loader": "^9.3.1",
|
|
"ts-node": "^10.7.0",
|
|
"typescript": "^4.8.2",
|
|
"webpack": "^5.74.0",
|
|
"webpack-cli": "^4.10.0",
|
|
"yargs": "^16.2.0"
|
|
},
|
|
"dependencies": {
|
|
"date-fns": "^2.29.3",
|
|
"yaml": "^1.10.2"
|
|
},
|
|
"files": [
|
|
"publish"
|
|
]
|
|
}
|