Files
2026-01-24 00:25:09 +00:00

53 lines
1.2 KiB
JSON

{
"name": "@metabuilder/workflow-plugin-calendar-sync",
"version": "1.0.0",
"description": "Calendar Sync node executor - RFC 5545 iCalendar parsing with conflict detection and scheduling suggestions",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"type-check": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch"
},
"keywords": [
"workflow",
"plugin",
"email",
"calendar",
"icalendar",
"rfc5545",
"scheduling",
"conflict-detection",
"availability"
],
"author": "MetaBuilder Team",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.0"
},
"peerDependencies": {
"@metabuilder/workflow": "^3.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/metabuilder/metabuilder.git",
"directory": "workflow/plugins/ts/integration/email/calendar-sync"
},
"engines": {
"node": ">=18.0.0"
}
}