n8n-nodes-mediafx
Version:
N8N custom nodes for video editing and media processing
89 lines (88 loc) • 2.18 kB
JSON
{
"name": "n8n-nodes-mediafx",
"version": "1.4.0",
"description": "N8N custom nodes for video editing and media processing",
"license": "MIT",
"author": {
"name": "Dante",
"email": "datapod.k@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/dandacompany/n8n-nodes-mediafx.git"
},
"homepage": "https://github.com/dandacompany/n8n-nodes-mediafx#readme",
"bugs": {
"url": "https://github.com/dandacompany/n8n-nodes-mediafx/issues"
},
"main": "dist/nodes/MediaFX/MediaFX.node.js",
"scripts": {
"build": "npm run clean && tsc && gulp build",
"clean": "rimraf dist",
"dev": "tsc --watch",
"lint": "eslint nodes --ext .js,.ts",
"lint:fix": "eslint nodes --ext .js,.ts --fix",
"test": "jest",
"prepublishOnly": "npm run build"
},
"files": [
"dist",
"fonts"
],
"n8n": {
"n8nNodesApiVersion": 1,
"nodes": [
"dist/nodes/MediaFX/MediaFX.node.js"
]
},
"keywords": [
"n8n",
"n8n-community-node-package",
"video",
"audio",
"ffmpeg",
"media",
"editing",
"subtitle",
"transition"
],
"dependencies": {
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"@ffprobe-installer/ffprobe": "^2.1.2",
"@types/fs-extra": "^11.0.4",
"axios": "^1.10.0",
"ffmpeg-static": "^5.2.0",
"fluent-ffmpeg": "^2.1.3",
"fs-extra": "^11.3.0",
"srt-parser-2": "^1.2.3",
"uuid": "^11.1.0"
},
"devDependencies": {
"@types/fluent-ffmpeg": "^2.1.27",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"eslint": "^8.57.0",
"eslint-plugin-n8n-nodes-base": "^1.16.3",
"gulp": "^4.0.2",
"gulp-rename": "^2.0.0",
"jest": "^29.7.0",
"n8n-core": "1.0.0",
"n8n-workflow": "1.0.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "~4.8.4"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
]
}
}