n8n-nodes-duckduckgo-search
Version:
A powerful and comprehensive n8n community node that seamlessly integrates DuckDuckGo search capabilities into your workflows. Search the web, find images, discover news, and explore videos - all with privacy-focused, reliable results.
104 lines (103 loc) • 3.76 kB
JSON
{
"name": "n8n-nodes-duckduckgo-search",
"version": "30.0.3",
"description": "A powerful and comprehensive n8n community node that seamlessly integrates DuckDuckGo search capabilities into your workflows. Search the web, find images, discover news, and explore videos - all with privacy-focused, reliable results.",
"keywords": [
"n8n-community-node-package",
"n8n",
"n8n-nodes",
"workflow-automation",
"duckduckgo",
"search-engine",
"automation",
"workflow",
"web-search",
"image-search",
"news-search",
"video-search",
"privacy-focused",
"search-results"
],
"license": "MIT",
"homepage": "https://github.com/samnodehi/n8n-nodes-duckduckgo#readme",
"author": {
"name": "Sam Nodehi",
"email": "sam.noodehi@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/samnodehi/n8n-nodes-duckduckgo.git"
},
"bugs": {
"url": "https://github.com/samnodehi/n8n-nodes-duckduckgo/issues"
},
"main": "index.js",
"scripts": {
"build": "tsc && gulp build:icons",
"build:prod": "rimraf dist && npm run build && npm run postbuild && npm run clean-build",
"postbuild": "copyfiles -u 1 \"nodes/**/*.{svg,png}\" dist/",
"clean-build": "node -e \"const fs=require('fs'); const path=require('path'); const glob=require('glob'); const files=glob.sync('dist/**/*.{tsbuildinfo,map}'); files.forEach(f => fs.existsSync(f) && fs.unlinkSync(f)); const testDir=path.join(__dirname, 'dist', 'tests'); if(fs.existsSync(testDir)) fs.rmSync(testDir, {recursive: true});\"",
"verify-build": "node -e \"const fs=require('fs'); const path=require('path'); const assert=require('assert'); assert.ok(fs.existsSync(path.join(__dirname, 'dist/nodes/DuckDuckGo/DuckDuckGo.node.js')), 'Main node file missing'); assert.ok(fs.existsSync(path.join(__dirname, 'dist/nodes/DuckDuckGo/duckduckgo.svg')), 'Icon missing'); console.log('✅ Build verification successful')\"",
"dev": "tsc --watch",
"format": "prettier nodes --write",
"lint": "eslint nodes package.json --ignore-pattern jest.config.js",
"lintfix": "eslint nodes package.json --fix --ignore-pattern jest.config.js",
"prepublishOnly": "npm run build:prod && npm run lint -c .eslintrc.prepublish.js nodes package.json && npm run verify-build",
"test": "jest",
"test:coverage": "jest --coverage"
},
"files": [
"dist"
],
"n8n": {
"n8nNodesApiVersion": 1,
"credentials": [
"dist/credentials/DuckDuckGoApi.credentials.js"
],
"nodes": [
"dist/nodes/DuckDuckGo/DuckDuckGo.node.js"
]
},
"devDependencies": {
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/github": "^11.0.2",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/express": "^4.17.6",
"@types/jest": "^29.5.14",
"@types/request-promise-native": "~1.0.15",
"@types/uuid": "^9.0.8",
"@typescript-eslint/parser": "~5.45",
"axios": "^1.9.0",
"babel-jest": "^29.7.0",
"copyfiles": "^2.4.1",
"eslint-plugin-n8n-nodes-base": "^1.11.0",
"glob": "^11.0.2",
"gulp": "^5.0.0",
"jest": "^29.7.0",
"n8n-core": "^1.14.1",
"n8n-workflow": "^1.14.1",
"prettier": "^2.7.1",
"rimraf": "^5.0.1",
"semantic-release": "^24.2.3",
"ts-jest": "^29.4.0",
"typescript": "~4.8.4"
},
"dependencies": {
"duck-duck-scrape": "^2.2.7",
"https-proxy-agent": "^7.0.6",
"socks-proxy-agent": "^8.0.5",
"uuid": "^9.0.1",
"axios": "^1.9.0",
"retry": "^0.13.1"
},
"engines": {
"node": ">=16.0.0"
},
"publishConfig": {
"access": "public"
},
"resolutions": {
"@n8n/client-oauth2/axios": "^1.9.0"
}
}