this is all wrong and barely working... no parallel running since... it messed things up

This commit is contained in:
2025-09-14 14:09:15 +03:00
commit 245c66ce3c
15 changed files with 2801 additions and 0 deletions

32
package.json Normal file
View File

@@ -0,0 +1,32 @@
{
"name": "boot-dev-typescript-web-scraper",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"scripts": {
"start": "tsx ./src/index.ts",
"test": "vitest run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rdarius/boot-dev-typescript-web-scraper.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/rdarius/boot-dev-typescript-web-scraper/issues"
},
"homepage": "https://github.com/rdarius/boot-dev-typescript-web-scraper#readme",
"description": "",
"devDependencies": {
"@types/jsdom": "^21.1.7",
"@types/node": "^24.3.3",
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"dependencies": {
"jsdom": "^27.0.0",
"p-limit": "^7.1.1"
}
}