90 lines
2.5 KiB
JSON
90 lines
2.5 KiB
JSON
{
|
|
"name": "crawlee",
|
|
"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"
|
|
},
|
|
"bin": "./src/cli.ts",
|
|
"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": {
|
|
"@crawlee/basic": "3.17.0",
|
|
"@crawlee/browser": "3.17.0",
|
|
"@crawlee/browser-pool": "3.17.0",
|
|
"@crawlee/cheerio": "3.17.0",
|
|
"@crawlee/cli": "3.17.0",
|
|
"@crawlee/core": "3.17.0",
|
|
"@crawlee/http": "3.17.0",
|
|
"@crawlee/jsdom": "3.17.0",
|
|
"@crawlee/linkedom": "3.17.0",
|
|
"@crawlee/memory-storage": "3.17.0",
|
|
"@crawlee/playwright": "3.17.0",
|
|
"@crawlee/puppeteer": "3.17.0",
|
|
"@crawlee/utils": "3.17.0",
|
|
"import-local": "^3.1.0",
|
|
"tslib": "^2.4.0"
|
|
},
|
|
"peerDependencies": {
|
|
"idcac-playwright": "*",
|
|
"playwright": "*",
|
|
"puppeteer": "*"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"idcac-playwright": {
|
|
"optional": true
|
|
},
|
|
"playwright": {
|
|
"optional": true
|
|
},
|
|
"puppeteer": {
|
|
"optional": true
|
|
}
|
|
}
|
|
}
|