UNPKG

n8n-nodes-pirate-weather

Version:

n8n node for Pirate Weather API - A free weather API alternative

67 lines (66 loc) 1.68 kB
{ "name": "n8n-nodes-pirate-weather", "version": "1.0.1", "description": "n8n node for Pirate Weather API - A free weather API alternative", "keywords": [ "n8n-community-node-package", "n8n", "pirate-weather", "weather", "forecast", "api" ], "license": "MIT", "homepage": "https://github.com/chadmoran/n8n-nodes-pirate-weather", "author": { "name": "Chad Moran", "email": "chad@chadmoran.com" }, "repository": { "type": "git", "url": "https://github.com/chadmoran/n8n-nodes-pirate-weather.git" }, "engines": { "node": ">=20.15" }, "main": "index.js", "scripts": { "build": "tsc && gulp build:icons", "format": "prettier nodes credentials --write", "lint": "eslint nodes credentials package.json", "lintfix": "eslint nodes credentials package.json --fix", "prepublishOnly": "npm run build", "link:local": "npm run build && npm link && echo 'Node linked! In your n8n directory, run: npm link n8n-nodes-pirate-weather'", "link:remove": "npm unlink -g n8n-nodes-pirate-weather && echo 'Node unlinked successfully'", "dev": "npm-run-all --parallel dev:build dev:n8n", "dev:build": "tsc --watch", "dev:n8n": "n8n start" }, "files": [ "dist" ], "n8n": { "n8nNodesApiVersion": 1, "credentials": [ "dist/credentials/PirateWeatherApi.credentials.js" ], "nodes": [ "dist/nodes/PirateWeather/PirateWeather.node.js" ] }, "devDependencies": { "@typescript-eslint/parser": "^8", "eslint": "^9", "eslint-plugin-n8n-nodes-base": "^1", "gulp": "^5", "npm-run-all": "^4", "prettier": "^3", "typescript": "^5" }, "peerDependencies": { "n8n-workflow": "*" }, "overrides": { "form-data": "4.0.4" } }