80 lines
2.4 KiB
JSON
80 lines
2.4 KiB
JSON
{
|
|
"name": "@crawlee/core",
|
|
"version": "3.17.0",
|
|
"description": "The scalable web crawling and scraping library for JavaScript/Node.js. Enables development of data extraction and web automation jobs (not only) with headless Chrome and Puppeteer.",
|
|
"engines": {
|
|
"node": ">=16.0.0"
|
|
},
|
|
"main": "./dist/index.js",
|
|
"module": "./dist/index.mjs",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.mjs",
|
|
"require": "./dist/index.js",
|
|
"types": "./dist/index.d.ts"
|
|
},
|
|
"./package.json": "./package.json"
|
|
},
|
|
"keywords": [
|
|
"apify",
|
|
"headless",
|
|
"chrome",
|
|
"puppeteer",
|
|
"crawler",
|
|
"scraper"
|
|
],
|
|
"author": {
|
|
"name": "Apify",
|
|
"email": "support@apify.com",
|
|
"url": "https://apify.com"
|
|
},
|
|
"contributors": [
|
|
"Jan Curn <jan@apify.com>",
|
|
"Marek Trunkat <marek@apify.com>",
|
|
"Ondra Urban <ondra@apify.com>"
|
|
],
|
|
"license": "Apache-2.0",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/apify/crawlee"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/apify/crawlee/issues"
|
|
},
|
|
"homepage": "https://crawlee.dev",
|
|
"scripts": {
|
|
"build": "yarn clean && yarn compile && yarn copy",
|
|
"clean": "rimraf ./dist",
|
|
"compile": "tsc -p tsconfig.build.json && gen-esm-wrapper ./dist/index.js ./dist/index.mjs",
|
|
"copy": "tsx ../../scripts/copy.ts"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"dependencies": {
|
|
"@apify/consts": "^2.20.0",
|
|
"@apify/datastructures": "^2.0.0",
|
|
"@apify/log": "^2.4.0",
|
|
"@apify/pseudo_url": "^2.0.30",
|
|
"@apify/timeout": "^0.3.0",
|
|
"@apify/utilities": "^2.7.10",
|
|
"@crawlee/memory-storage": "3.17.0",
|
|
"@crawlee/types": "3.17.0",
|
|
"@crawlee/utils": "3.17.0",
|
|
"@sapphire/async-queue": "^1.5.1",
|
|
"@vladfrangu/async_event_emitter": "^2.2.2",
|
|
"csv-stringify": "^6.2.0",
|
|
"fs-extra": "^11.0.0",
|
|
"got-scraping": "^4.2.1",
|
|
"json5": "^2.2.3",
|
|
"minimatch": "^9.0.0",
|
|
"ow": "^0.28.1",
|
|
"stream-json": "^1.8.0",
|
|
"tldts": "^7.0.0",
|
|
"tough-cookie": "^6.0.0",
|
|
"tslib": "^2.4.0",
|
|
"type-fest": "^4.0.0"
|
|
}
|
|
}
|