-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.1 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@crawlee/core",
"version": "4.0.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": ">=22.0.0"
},
"type": "module",
"exports": {
".": "./dist/index.js",
"./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",
"copy": "tsx ../../scripts/copy.ts"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@apify/consts": "^2.41.0",
"@apify/datastructures": "^2.0.3",
"@apify/log": "^2.5.18",
"@apify/pseudo_url": "^2.0.59",
"@apify/timeout": "^0.3.2",
"@apify/utilities": "^2.15.5",
"@crawlee/memory-storage": "4.0.0",
"@crawlee/types": "4.0.0",
"@crawlee/utils": "4.0.0",
"@sapphire/async-queue": "^1.5.5",
"@vladfrangu/async_event_emitter": "^2.4.6",
"csv-stringify": "^6.5.2",
"fs-extra": "^11.3.0",
"json5": "^2.2.3",
"minimatch": "^10.0.1",
"ow": "^2.0.0",
"stream-json": "^1.9.1",
"tldts": "^7.0.6",
"tough-cookie": "^6.0.0",
"tslib": "^2.8.1",
"type-fest": "^4.41.0",
"zod": "^4.3.6"
}
}