Files
fusion/plugins/fusion-plugin-dependency-graph/package.json
Fusion 21b7d41680 feat(FN-3087): document graph plugin in plugin authoring guide
Documentation-only finish for FN-3087, adding changeset and README updates for the dependency graph plugin and plugin authoring guide.

Fusion-Task-Id: FN-3087
2026-05-07 08:49:19 -07:00

36 lines
896 B
JSON

{
"name": "@fusion-plugin-examples/dependency-graph",
"version": "0.1.12",
"type": "module",
"description": "Dependency graph dashboard view plugin for Fusion",
"private": true,
"exports": {
".": {
"types": "./src/index.ts",
"import": "./src/index.ts"
},
"./dashboard-view": {
"types": "./src/index.ts",
"import": "./src/index.ts"
}
},
"scripts": {
"build": "tsc",
"test": "vitest run --silent=passed-only --reporter=dot"
},
"dependencies": {
"@fusion/core": "workspace:*",
"@fusion/dashboard": "workspace:*",
"@fusion/plugin-sdk": "workspace:*",
"lucide-react": "^0.542.0"
},
"devDependencies": {
"@testing-library/react": "^16.3.2",
"@types/node": "^25.5.2",
"@types/react": "^19.0.0",
"react": "^19.0.0",
"react-dom": "^19.2.4",
"typescript": "^5.7.0",
"vitest": "^3.2.4"
}
}