forked from shioju/crawlee-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.56 KB
/
package.json
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@crawlee/core",
"version": "3.11.1",
"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": "./index.js",
"module": "./index.mjs",
"types": "./index.d.ts",
"exports": {
".": {
"import": "./index.mjs",
"require": "./index.js",
"types": "./index.d.ts"
},
"./package.json": "./package.json"
},
"keywords": [
"apify",
"headless",
"chrome",
"puppeteer",
"crawler",
"scraper"
],
"author": {
"name": "Apify",
"email": "[email protected]",
"url": "https://apify.com"
},
"contributors": [
"Jan Curn <[email protected]>",
"Marek Trunkat <[email protected]>",
"Ondra Urban <[email protected]>"
],
"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 ./index.js ./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.11.1",
"@crawlee/types": "3.11.1",
"@crawlee/utils": "3.11.1",
"@sapphire/async-queue": "^1.5.1",
"@types/tough-cookie": "^4.0.2",
"@vladfrangu/async_event_emitter": "^2.2.2",
"csv-stringify": "^6.2.0",
"fs-extra": "^11.0.0",
"got-scraping": "^4.0.0",
"json5": "^2.2.3",
"minimatch": "^9.0.0",
"ow": "^0.28.1",
"stream-chain": "^2.2.5",
"stream-json": "^1.7.4",
"tldts": "^6.0.0",
"tough-cookie": "^4.0.0",
"tslib": "^2.4.0",
"type-fest": "^4.0.0"
},
"lerna": {
"command": {
"publish": {
"assets": []
}
}
},
"gitHead": "1ace5c607085efb25169f61473cc3b26d7956be7"
}