-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.57 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
{
"name": "apify-orchestrator",
"version": "0.5.3",
"description": "Utilities to orchestrate Apify Actors.",
"engines": {
"node": ">=16.0.0"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"lint": "eslint ./src --ext .ts",
"lint:fix": "eslint ./src --ext .ts --fix",
"test": "vitest",
"coverage": "vitest --coverage"
},
"keywords": [
"apify",
"orchestrator",
"actor",
"client",
"parallel",
"merge",
"pipeline",
"task",
"concurrent",
"optimized"
],
"author": "Marco Gullo",
"license": "Apache-2.0",
"type": "module",
"devDependencies": {
"@apify/eslint-config-ts": "^0.4.1",
"@apify/tsconfig": "^0.1.0",
"@vitest/coverage-v8": "^3.0.5",
"eslint": "^8.57.0",
"typescript": "^5.7.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.5"
},
"dependencies": {
"apify": "^3.2.6",
"apify-client": "^2.12.0",
"crawlee": "^3.11.5"
},
"cspell": {
"version": "0.2",
"ignorePaths": [],
"dictionaryDefinitions": [
{
"name": "custom-dictionary",
"path": "./.cspell/custom-dictionary.txt",
"addWords": true
}
],
"dictionaries": [
"custom-dictionary"
],
"words": [],
"ignoreWords": [],
"import": []
}
}