mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 22:34:56 +00:00
35 lines
894 B
JSON
35 lines
894 B
JSON
{
|
|
"name": "@metabuilder/workflow-plugin-email-parser",
|
|
"version": "1.0.0",
|
|
"description": "Email Parser node executor - RFC 5322 email message parsing",
|
|
"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"
|
|
},
|
|
"keywords": ["workflow", "plugin", "email", "parser", "rfc5322"],
|
|
"author": "MetaBuilder Team",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/node": "^20.0.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/utility/email-parser"
|
|
}
|
|
}
|