mirror of
https://github.com/philpalmieri/obsidian-taskgregator.git
synced 2026-07-22 08:37:44 +00:00
First stable release. Collapsible context tree, sort/group controls, smart lists, priorities, dates, and per-task detail notes. Scoped vault scanning, declarative settings for 1.13+ search, build-provenance attestations, and immutable releases. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 2e61287a-aabe-472b-9d13-73dc5aa1060c
34 lines
873 B
JSON
34 lines
873 B
JSON
{
|
|
"name": "taskgregator",
|
|
"version": "1.0.0",
|
|
"description": "A Things3-style aggregator for native Obsidian tasks.",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production"
|
|
},
|
|
"keywords": [
|
|
"obsidian",
|
|
"obsidian-plugin",
|
|
"tasks",
|
|
"gtd",
|
|
"things3",
|
|
"task-management"
|
|
],
|
|
"author": "Phil Palmieri",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/node": "^20.11.0",
|
|
"esbuild": "^0.20.0",
|
|
"obsidian": "latest",
|
|
"typescript": "^5.4.0"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/philpalmieri/obsidian-taskgregator.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/philpalmieri/obsidian-taskgregator/issues"
|
|
},
|
|
"homepage": "https://github.com/philpalmieri/obsidian-taskgregator#readme"
|
|
}
|