chore: add quartz plugin manifest, remove legacy manifest.ts

This commit is contained in:
saberzero1 2026-02-17 17:44:55 +01:00
parent 6b10d168ff
commit f61ef4aaad
No known key found for this signature in database
3 changed files with 18 additions and 19 deletions

View file

@ -83,6 +83,24 @@
"typescript": "^5.9.3",
"vitest": "^2.1.9"
},
"quartz": {
"name": "graph",
"displayName": "Graph",
"category": "emitter",
"version": "1.0.0",
"quartzVersion": ">=5.0.0",
"dependencies": [],
"defaultOrder": 50,
"defaultEnabled": true,
"defaultOptions": {},
"components": {
"Graph": {
"displayName": "Graph",
"defaultPosition": "right",
"defaultPriority": 10
}
}
},
"engines": {
"node": ">=22",
"npm": ">=10.9.2"

View file

@ -1,3 +1,2 @@
export { default as Graph } from "./components/Graph";
export type { GraphOptions, D3Config } from "./components/Graph";
export { manifest } from "./manifest";

View file

@ -1,18 +0,0 @@
export const manifest = {
name: "@quartz-community/graph",
displayName: "Graph",
description:
"Interactive graph visualization component for Quartz - visualize your content as a network graph.",
version: "0.1.0",
category: "component",
quartzVersion: "^4.5.0",
components: {
Graph: {
name: "Graph",
displayName: "Graph",
description:
"Visualize your content as an interactive network graph with local and global views",
version: "0.1.0",
},
},
};