-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.01 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.01 KB
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
{
"name": "documentation-scraper",
"version": "1.0.0",
"description": "Advanced web scraping application for documentation websites",
"main": "dist/index.ts",
"scripts": {
"start": "ts-node src/index.ts",
"build": "rimraf dist && tsc",
"clean": "rimraf dist",
"test": "jest"
},
"dependencies": {
"@types/user-agents": "^1.0.4",
"cheerio": "^1.0.0-rc.12",
"express-rate-limit": "^7.1.5",
"fs-extra": "^11.2.0",
"glob": "^10.3.10",
"puppeteer": "^23.6.0",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"rimraf": "^5.0.5",
"robots-parser": "^3.0.1",
"sanitize-filename": "^1.6.3",
"socks-proxy-agent": "^8.0.2",
"turndown": "^7.1.2",
"user-agents": "^1.1.331"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.5",
"@types/turndown": "^5.0.4",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}