feat: implement core product scraping infrastructure with Playwright extractors and data formatters

This commit is contained in:
Vitalii Litvinchuk
2026-06-19 14:15:50 +03:00
commit 59b5c73612
11 changed files with 1753 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
{
"name": "scraper",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"scrape": "npx tsx src/index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"playwright": "^1.50.1",
"playwright-extra": "^4.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2"
},
"devDependencies": {
"@types/node": "^22.19.21",
"tsx": "^4.19.3",
"typescript": "^5.8.2"
}
}