- Add KDriveCredentials to n8n.credentials in package.json to make credentials discoverable - Update build script to copy kdrive.svg to dist directory for proper logo display - Update SVG logo with improved design - Fix TypeScript types and error handling in GenericFunctions and KDrive node - Add default values to node properties for better UX
31 lines
720 B
JSON
31 lines
720 B
JSON
{
|
|
"name": "n8n-nodes-kdrive",
|
|
"version": "1.0.0",
|
|
"description": "n8n node for Infomaniak kDrive API",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"build": "tsc && cp src/nodes/KDrive/kdrive.svg dist/nodes/KDrive/kdrive.svg",
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
},
|
|
"keywords": ["n8n", "kdrive", "infomaniak"],
|
|
"author": "",
|
|
"license": "LGPL-3.0",
|
|
"dependencies": {
|
|
"@types/node": "^20.0.0",
|
|
"n8n-workflow": "^1.0.0",
|
|
"request": "^2.88.2",
|
|
"@types/request": "^2.48.12"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.0.0",
|
|
"@types/node": "^20.0.0"
|
|
},
|
|
"n8n": {
|
|
"nodes": [
|
|
"KDrive"
|
|
],
|
|
"credentials": [
|
|
"KDriveCredentials"
|
|
]
|
|
}
|
|
} |