UNPKG

n8n-nodes-googlesearch

Version:

n8n node for Google Search API without Python dependency

66 lines 1.87 kB
{ "name": "n8n-nodes-googlesearch", "version": "0.2.4", "description": "n8n node for Google Search API without Python dependency", "keywords": [ "n8n-community-node-package", "google-search", "search", "google", "api", "n8n" ], "license": "MPL-2.0", "homepage": "https://github.com/ziobuddalabs/n8n-google-search", "author": { "name": "Michel Morelli", "email": "info@ziobuddalabs.com", "url": "https://ziobuddalabs.com" }, "repository": { "type": "git", "url": "https://github.com/ziobuddalabs/n8n-google-search.git" }, "bugs": { "url": "https://github.com/ziobuddalabs/n8n-google-search/issues" }, "engines": { "node": ">=14.0.0" }, "main": "index.js", "scripts": { "build": "tsc && gulp build:icons", "dev": "tsc --watch", "format": "prettier nodes credentials --write", "lint": "eslint ./nodes/GoogleSearch/**/*.ts ./credentials/**/*.ts package.json", "lintfix": "eslint ./nodes/GoogleSearch/**/*.ts ./credentials/**/*.ts package.json --fix", "prepublishOnly": "npm run build && npm run lint -c .eslintrc.prepublish.js ./nodes/GoogleSearch/**/*.ts ./credentials/**/*.ts package.json", "prepare-publish": "npm run build && npm run lint" }, "files": [ "dist" ], "n8n": { "n8nNodesApiVersion": 1, "credentials": [ "dist/credentials/GoogleSearchApi.credentials.js" ], "nodes": [ "dist/nodes/GoogleSearch/GoogleSearch.node.js" ] }, "devDependencies": { "@types/express": "^4.17.6", "@types/request-promise-native": "~1.0.15", "@typescript-eslint/parser": "~5.45", "eslint-plugin-n8n-nodes-base": "^1.11.0", "gulp": "^4.0.2", "n8n-core": "^0.125.0", "n8n-workflow": "^0.107.0", "prettier": "^2.7.1", "typescript": "~4.8.4" }, "dependencies": { "axios": "^1.6.7" } }