| 1234567891011121314151617181920212223242526272829303132333435363738 |
- {
- "name": "webshop-scraper",
- "version": "1.0.0",
- "description": "A web scraper for extracting information from webshops (ShopRenter, WooCommerce, Shopify)",
- "main": "dist/index.js",
- "scripts": {
- "build": "tsc",
- "start": "node dist/index.js",
- "dev": "ts-node src/index.ts",
- "watch": "tsc -w"
- },
- "keywords": [
- "scraper",
- "webshop",
- "shopify",
- "woocommerce",
- "shoprenter"
- ],
- "author": "",
- "license": "ISC",
- "dependencies": {
- "axios": "^1.6.0",
- "cheerio": "^1.0.0-rc.12",
- "express": "^4.18.2",
- "turndown": "^7.1.2",
- "uuid": "^9.0.1",
- "xml2js": "^0.6.2"
- },
- "devDependencies": {
- "@types/express": "^4.17.20",
- "@types/node": "^20.9.0",
- "@types/turndown": "^5.0.6",
- "@types/uuid": "^9.0.7",
- "@types/xml2js": "^0.4.13",
- "ts-node": "^10.9.1",
- "typescript": "^5.2.2"
- }
- }
|