-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
63 lines (63 loc) · 1.43 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
63
{
"name": "n8n-nodes-puppeteer",
"version": "1.3.1",
"description": "n8n node for browser automation using Puppeteer",
"license": "MIT",
"homepage": "https://github.com/drudge/n8n-nodes-puppeteer",
"author": {
"name": "Nicholas Penree",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/drudge/n8n-nodes-puppeteer.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",
"script",
"pdf",
"n8n-node",
"n8n-community-node-package"
],
"n8n": {
"n8nNodesApiVersion": 1,
"credentials": [],
"nodes": [
"dist/nodes/Puppeteer/Puppeteer.node.js"
]
},
"devDependencies": {
"@typescript-eslint/parser": "^8.18.1",
"eslint": "^9.17.0",
"eslint-plugin-n8n-nodes-base": "^1.16.3",
"gulp": "^5.0.0",
"n8n-workflow": "*",
"prettier": "^3.4.2",
"typescript": "^5.7.2"
},
"peerDependencies": {
"n8n-workflow": "*"
},
"dependencies": {
"@n8n/vm2": "^3.9.25",
"puppeteer": "^23.11.1",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2"
}
}