Initial commit: TODO Everywhere Logseq plugin

- Синхронизация задач из PPDB
- Синхронизация issues из Gitea
- Автоматическая настройка config.edn
- Slash-команды и кнопка в тулбаре
- Конвертация приоритетов и статусов
This commit is contained in:
2026-01-14 12:56:29 +03:00
commit 0352f53ed9
7 changed files with 824 additions and 0 deletions

31
package.json Normal file
View File

@@ -0,0 +1,31 @@
{
"name": "logseq-todo-everywhere",
"version": "1.0.0",
"description": "Sync tasks from external sources (PPDB, Gitea) to Logseq",
"main": "dist/index.js",
"scripts": {
"dev": "npx vite build --watch",
"build": "npx vite build"
},
"keywords": [
"logseq",
"plugin",
"todo",
"tasks",
"gitea",
"sync"
],
"author": "xpamych",
"license": "MIT",
"logseq": {
"id": "logseq-todo-everywhere",
"title": "TODO Everywhere",
"icon": "./icon.svg"
},
"devDependencies": {
"@logseq/libs": "^0.0.17",
"typescript": "^5.3.3",
"vite": "^5.0.10",
"vite-plugin-logseq": "^1.1.2"
}
}