super-productivity/packages/plugin-dev/sync-md/temp/index.html
Johannes Millan d4d81bf511 feat(plugin-api): create foundational plugin API package
- Add @super-productivity/plugin-api package with TypeScript definitions
- Define core plugin interfaces, types, and manifest structure
- Add plugin hooks system for event-driven architecture
- Create plugin API type definitions and constants
- Add documentation and development guidelines
2025-06-27 18:13:19 +02:00

24 lines
425 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<title>Sync.md</title>
<script
type="module"
crossorigin
src="./index.js"
></script>
<link
rel="stylesheet"
crossorigin
href="./index.css"
/>
</head>
<body>
<div id="root"></div>
</body>
</html>