This repository has been archived by the owner on Apr 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
62 lines (62 loc) · 1.62 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "n8n-nodes-puppeteer-extended",
"version": "0.1.0",
"description": "n8n node for requesting webpages using Puppeteer",
"license": "MIT",
"homepage": "https://github.com/hckdotng/n8n-nodes-puppeteer-extended",
"author": {
"name": "hckdotng",
"url": "https://hck.ng"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hckdotng/n8n-nodes-puppeteer-extended.git"
},
"main": "index.js",
"scripts": {
"dev": "npm run watch",
"build": "tsc && gulp",
"lint": "tslint -p tsconfig.json -c tslint.json",
"lintfix": "tslint --fix -p tsconfig.json -c tslint.json",
"nodelinter": "nodelinter",
"watch": "tsc --watch"
},
"files": [
"dist"
],
"keywords": [
"n8n",
"node",
"puppeteer",
"scraper",
"screenshot",
"pdf",
"n8n-node",
"n8n-community-node-package",
"automation"
],
"n8n": {
"credentials": [],
"nodes": [
"dist/nodes/Puppeteer/Puppeteer.node.js"
]
},
"devDependencies": {
"@types/node": "^14.18.18",
"gulp": "^4.0.0",
"n8n": "^0.174.0",
"n8n-workflow": "~0.100.0",
"nodelinter": "^0.1.19",
"tslint": "^6.1.2",
"typescript": "^4.7.2"
},
"dependencies": {
"@types/node-ipc": "^9.2.0",
"axios": "^1.1.3",
"n8n-core": "~0.118.0",
"node-ipc": "^11.1.0",
"puppeteer": "^14.1.1",
"puppeteer-extra": "^3.2.3",
"puppeteer-extra-plugin-stealth": "^2.9.0"
}
}