mirror of
https://github.com/quartz-community/graph.git
synced 2026-07-22 02:50:25 +00:00
chore: add quartz plugin manifest, remove legacy manifest.ts
This commit is contained in:
parent
6b10d168ff
commit
f61ef4aaad
3 changed files with 18 additions and 19 deletions
18
package.json
18
package.json
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -1,3 +1,2 @@
|
|||
export { default as Graph } from "./components/Graph";
|
||||
export type { GraphOptions, D3Config } from "./components/Graph";
|
||||
export { manifest } from "./manifest";
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
},
|
||||
},
|
||||
};
|
||||
Loading…
Reference in a new issue