-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 973 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 973 Bytes
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
{
"name": "@danilidonbeltran/webscrapper",
"version": "3.0.0",
"description": "A web scraper using Playwright to extract all text content from websites",
"main": "src/index.js",
"engines": {
"node": ">=20.0.0",
"npm": ">=11.10.0"
},
"bin": {
"webscrapper": "src/commands/scrape.js"
},
"files": [
"src",
"config.json",
"plugin-example.js"
],
"types": "src/index.d.ts",
"type": "module",
"private": false,
"scripts": {
"scrape": "node src/commands/scrape.js",
"list-presets": "node src/commands/list-presets.js",
"show-preset": "node src/commands/show-preset.js",
"install-browsers": "npx playwright install",
"test": "node src/webscrapper.test.js",
"debug": "PWDEBUG=1 node src/commands/scrape.js"
},
"keywords": [
"webscraping",
"playwright",
"text-extraction"
],
"author": "",
"license": "MIT",
"dependencies": {
"playwright": "^1.40.0"
},
"devDependencies": {}
}