aaronpenne_move-completed-t.../package.json
aaronpenne ffcff29c3c fix: stop viewport from scrolling when tasks move
Remove cursor repositioning to the moved task and set scrollIntoView:
false on all dispatches. The highlight still marks the new position
but the page stays put.
2026-06-13 09:35:31 -07:00

32 lines
870 B
JSON

{
"name": "move-completed-tasks",
"version": "0.4.1",
"description": "Instantly move completed tasks to the bottom of their checkbox group",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "node esbuild.config.mjs production",
"test": "jest",
"lint": "eslint src/"
},
"keywords": ["obsidian", "plugin", "tasks", "checkbox"],
"author": "",
"license": "MIT",
"dependencies": {
"@codemirror/state": "^6.0.0",
"@codemirror/view": "^6.0.0"
},
"devDependencies": {
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"esbuild": "^0.20.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"@types/jest": "^29.5.0",
"ts-jest": "^29.1.0",
"obsidian": "latest",
"typescript": "^5.3.0",
"tslib": "^2.6.0"
}
}