-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
89 lines (89 loc) · 2.51 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-one",
"version": "2.0.4",
"private": false,
"description": "CrawleeOne is a framework built on top of Crawlee and Apify for writing robust and highly configurable web scrapers",
"author": "Juro Oravec <juraj.oravec.josefson@gmail.com>",
"homepage": "https://github.com/jurooravec/crawlee-one#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/jurooravec/crawlee-one.git"
},
"bugs": {
"url": "https://github.com/jurooravec/crawlee-one/issues"
},
"license": "MIT",
"keywords": [
"crawlee",
"crawlee-one",
"apify",
"actor",
"crawler",
"scraper",
"template"
],
"files": [
"dist"
],
"exports": {
".": "./dist/cjs/index.js",
"./apify": "./dist/cjs/lib/integrations/apify.js",
"./sentry": "./dist/cjs/lib/telemetry/sentry.js"
},
"module": "dist/esm/index.js",
"types": "dist/cjs/index.d.js",
"bin": "dist/cjs/cli/index.js",
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"start": "npm run start:dev",
"start:prod": "node dist/cjs/index.js",
"start:dev": "ts-node ./src/index.ts",
"build": "npm run build:cjs",
"build:all": "npm run build:cjs && npm run build:esm",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"lint": "eslint ./src --ext .ts",
"lint:fix": "eslint ./src --ext .ts --fix",
"test": "vitest run",
"coverage": "vitest run --coverage",
"gen:docs": "typedoc src/index.ts --plugin typedoc-plugin-markdown --tsconfig tsconfig.base.json --out ./docs/typedoc"
},
"devDependencies": {
"@types/lodash": "^4.17.4",
"@types/pkginfo": "^0.4.3",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"eslint": "^9.3.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"playwright": "^1.44.1",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typedoc": "^0.25.13",
"typedoc-plugin-markdown": "^4.0.3",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
},
"peerDependencies": {
"@sentry/node": "^7.50.0",
"actor-spec": "^0.4.1",
"apify": "^3.1.x",
"apify-actor-config": "^1.0.3",
"apify-client": "^2.7.x",
"cheerio": "^1.0.0-rc.12",
"crawlee": "^3.3.1",
"joi": "^17.9.2",
"playwright": "^1.44.x",
"vitest": "^1.6.0"
},
"dependencies": {
"commander": "^12.1.0",
"cosmiconfig": "^9.0.0",
"dotenv": "^16.4.5",
"glob": "^10.4.1",
"lodash": "^4.17.21",
"pkginfo": "^0.4.1"
}
}