n8n-nodes-shabbat-time
Version:
n8n community node to check if a given date/time falls on Shabbat or Jewish holiday with precise time checking
57 lines (56 loc) • 1.61 kB
JSON
{
"name": "n8n-nodes-shabbat-time",
"version": "2.0.9",
"description": "n8n community node to check if a given date/time falls on Shabbat or Jewish holiday with precise time checking",
"keywords": [
"n8n-community-node-package",
"shabbat",
"jewish",
"calendar",
"holiday",
"hebcal"
],
"license": "MIT",
"homepage": "https://github.com/idobe977/n8n-nodes-shabbat-time",
"author": {
"name": "עידו",
"email": "ido.mations1@gmail.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/idobe977/n8n-nodes-shabbat-time.git"
},
"engines": {
"node": ">=20.15"
},
"main": "index.js",
"scripts": {
"build": "npx rimraf dist && tsc && gulp build:icons",
"dev": "tsc --watch",
"format": "prettier nodes --write",
"lint": "eslint nodes package.json",
"lintfix": "eslint nodes package.json --fix",
"prepublishOnly": "npm run build && npm run lint -c .eslintrc.prepublish.js nodes package.json"
},
"files": [
"dist"
],
"n8n": {
"n8nNodesApiVersion": 1,
"credentials": [],
"nodes": [
"dist/nodes/ShabatTime/ShabatTime.node.js"
]
},
"devDependencies": {
"@typescript-eslint/parser": "~8.32.0",
"eslint": "^8.57.0",
"eslint-plugin-n8n-nodes-base": "^1.16.3",
"gulp": "^5.0.0",
"prettier": "^3.5.3",
"typescript": "^5.8.2"
},
"peerDependencies": {
"n8n-workflow": "*"
}
}