UNPKG

2.31 kBJSONView Raw
1{
2 "name": "@crawlee/core",
3 "version": "3.1.0",
4 "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.",
5 "engines": {
6 "node": ">=16.0.0"
7 },
8 "main": "./index.js",
9 "module": "./index.mjs",
10 "types": "./index.d.ts",
11 "exports": {
12 ".": {
13 "import": "./index.mjs",
14 "require": "./index.js",
15 "types": "./index.d.ts"
16 }
17 },
18 "keywords": [
19 "apify",
20 "headless",
21 "chrome",
22 "puppeteer",
23 "crawler",
24 "scraper"
25 ],
26 "author": {
27 "name": "Apify",
28 "email": "support@apify.com",
29 "url": "https://apify.com"
30 },
31 "contributors": [
32 "Jan Curn <jan@apify.com>",
33 "Marek Trunkat <marek@apify.com>",
34 "Ondra Urban <ondra@apify.com>"
35 ],
36 "license": "Apache-2.0",
37 "repository": {
38 "type": "git",
39 "url": "git+https://github.com/apify/crawlee"
40 },
41 "bugs": {
42 "url": "https://github.com/apify/crawlee/issues"
43 },
44 "homepage": "https://crawlee.dev",
45 "scripts": {
46 "build": "npm run clean && npm run compile && npm run copy",
47 "clean": "rimraf ./dist",
48 "compile": "tsc -p tsconfig.build.json && gen-esm-wrapper ./index.js ./index.mjs",
49 "copy": "ts-node -T ../../scripts/copy.ts"
50 },
51 "publishConfig": {
52 "access": "public"
53 },
54 "dependencies": {
55 "@apify/consts": "^2.0.0",
56 "@apify/datastructures": "^2.0.0",
57 "@apify/log": "^2.0.0",
58 "@apify/pseudo_url": "^2.0.0",
59 "@apify/timeout": "^0.3.0",
60 "@apify/utilities": "^2.0.0",
61 "@crawlee/memory-storage": "^3.1.0",
62 "@crawlee/types": "^3.1.0",
63 "@crawlee/utils": "^3.1.0",
64 "@types/tough-cookie": "^4.0.2",
65 "@vladfrangu/async_event_emitter": "^2.0.0",
66 "csv-stringify": "^6.2.0",
67 "fs-extra": "^10.1.0",
68 "json5": "^2.2.1",
69 "minimatch": "^5.1.0",
70 "ow": "^0.28.1",
71 "stream-chain": "^2.2.5",
72 "stream-json": "^1.7.4",
73 "tldts": "^5.7.80",
74 "tough-cookie": "^4.0.0",
75 "type-fest": "^3.0.0"
76 }
77}