n8n_node_librebooking/package.json

83 lines
2.4 KiB
JSON

{
"name": "n8n-nodes-librebooking",
"version": "1.0.0",
"description": "n8n Node für LibreBooking - Ressourcen- und Reservierungsverwaltung",
"keywords": [
"n8n-community-node-package",
"n8n",
"n8n-node",
"workflow",
"automation",
"librebooking",
"booking",
"reservation",
"resource-management",
"room-booking",
"raumbuchung",
"terminbuchung",
"open-source"
],
"license": "MIT",
"homepage": "https://github.com/your-org/n8n-nodes-librebooking#readme",
"author": {
"name": "LibreBooking n8n Integration",
"email": "support@example.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/your-org/n8n-nodes-librebooking.git"
},
"bugs": {
"url": "https://github.com/your-org/n8n-nodes-librebooking/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc && npm run copy:icons",
"copy:icons": "cp nodes/LibreBooking/librebooking.svg dist/nodes/LibreBooking/ && cp nodes/LibreBookingTrigger/librebooking.svg dist/nodes/LibreBookingTrigger/",
"dev": "tsc --watch",
"clean": "rm -rf dist node_modules",
"rebuild": "npm run clean && npm install && npm run build",
"format": "prettier nodes credentials --write",
"lint": "eslint nodes credentials --ext .ts",
"lint:fix": "eslint nodes credentials --ext .ts --fix",
"prepack": "npm run build",
"prepublishOnly": "npm run lint && npm run build",
"postinstall": "echo 'Installation abgeschlossen. Führe npm run build aus.'",
"test": "ts-node test/test-api.ts",
"link:n8n": "npm link && echo 'Node verlinkt. Starte n8n neu mit: n8n start'",
"unlink": "npm unlink -g n8n-nodes-librebooking"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"n8n": {
"n8nNodesApiVersion": 1,
"credentials": [
"dist/credentials/LibreBookingApi.credentials.js"
],
"nodes": [
"dist/nodes/LibreBooking/LibreBooking.node.js",
"dist/nodes/LibreBookingTrigger/LibreBookingTrigger.node.js"
]
},
"devDependencies": {
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"eslint": "^8.54.0",
"n8n-workflow": "^1.20.0",
"prettier": "^3.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.2"
},
"peerDependencies": {
"n8n-workflow": "*"
},
"engines": {
"node": ">=18.17.0"
}
}