Files
fusion/packages/plugin-sdk/package.json
gsxdsm 79d47ddcca chore(release): v0.2.7
Version bump via changesets.
2026-04-25 11:38:48 -07:00

39 lines
963 B
JSON

{
"name": "@fusion/plugin-sdk",
"version": "0.2.7",
"license": "MIT",
"description": "Fusion plugin SDK: types and helpers for authoring third-party plugins that extend the Fusion dashboard and engine.",
"homepage": "https://github.com/Runfusion/Fusion#readme",
"repository": {
"type": "git",
"url": "https://github.com/Runfusion/Fusion",
"directory": "packages/plugin-sdk"
},
"bugs": {
"url": "https://github.com/Runfusion/Fusion/issues"
},
"type": "module",
"exports": {
".": {
"types": "./src/index.ts",
"import": "./src/index.ts"
}
},
"scripts": {
"typecheck": "tsc --noEmit --skipLibCheck",
"test": "vitest run --silent=passed-only --reporter=dot"
},
"devDependencies": {
"@types/node": "^25.5.0",
"typescript": "^5.7.0",
"vitest": "^3.1.0"
},
"peerDependencies": {
"@fusion/core": "workspace:*"
},
"engines": {
"node": ">=22.5.0"
},
"private": true
}