22 lines
481 B
JSON
22 lines
481 B
JSON
{
|
|
"name": "@fusion-plugin-examples/notification",
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"description": "Example Fusion plugin that sends webhook notifications on task lifecycle events",
|
|
"keywords": ["fusion-plugin"],
|
|
"exports": {
|
|
".": {
|
|
"types": "./src/index.ts",
|
|
"import": "./dist/index.js"
|
|
}
|
|
},
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"test": "vitest run"
|
|
},
|
|
"dependencies": {
|
|
"@fusion/plugin-sdk": "workspace:*"
|
|
}
|
|
}
|