super-productivity/packages/plugin-dev/sync-md/manifest.json
Johannes Millan 7ff12d241c feat(sync-md): convert plugin to Solid.js with bidirectional sync
- Rewrite sync.md plugin using Solid.js for better performance
- Implement sophisticated bidirectional sync algorithm with conflict detection
- Add support for three sync modes: bidirectional, file-to-project, project-to-file
- Create comprehensive sync logic with checksum-based change tracking
- Add test script to validate sync functionality
- Maintain task hierarchy and handle deletions gracefully
2025-06-24 21:04:38 +02:00

24 lines
539 B
JSON

{
"id": "sync-md",
"manifestVersion": 1,
"name": "Sync.md",
"version": "2.0.0",
"description": "Sync markdown files with SuperProductivity projects - Solid.js version",
"author": "SuperProductivity",
"type": "standard",
"minSupVersion": "10.0.0",
"permissions": [
"getTasks",
"updateTask",
"addTask",
"getAllProjects",
"nodeExecution",
"persistDataSynced",
"loadSyncedData"
],
"sidePanel": true,
"iFrame": true,
"entryPoint": "plugin.js",
"hooks": [],
"icon": "sync-md-icon.svg"
}