67 lines
1.8 KiB
JSON
67 lines
1.8 KiB
JSON
{
|
|
"name": "@crawlee/utils",
|
|
"version": "3.17.0",
|
|
"description": "A set of shared utilities that can be used by crawlers",
|
|
"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",
|
|
"crawlers",
|
|
"crawling",
|
|
"utilities",
|
|
"utils"
|
|
],
|
|
"author": {
|
|
"name": "Apify",
|
|
"email": "support@apify.com",
|
|
"url": "https://apify.com"
|
|
},
|
|
"contributors": [
|
|
"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"
|
|
},
|
|
"dependencies": {
|
|
"@apify/log": "^2.4.0",
|
|
"@apify/ps-tree": "^1.2.0",
|
|
"@crawlee/types": "3.17.0",
|
|
"@types/sax": "^1.2.7",
|
|
"cheerio": "1.0.0-rc.12",
|
|
"file-type": "^21.3.1",
|
|
"got-scraping": "^4.2.1",
|
|
"ow": "^0.28.1",
|
|
"robots-parser": "^3.0.1",
|
|
"sax": "^1.4.1",
|
|
"tslib": "^2.4.0",
|
|
"whatwg-mimetype": "^4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/whatwg-mimetype": "^3.0.2"
|
|
}
|
|
}
|