-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.67 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
{
"name": "actor-runtime",
"version": "0.1.0",
"description": "A minimal, self-contained local Apify platform in a single Docker image.",
"type": "module",
"private": true,
"engines": {
"node": ">=22.0.0"
},
"packageManager": "pnpm@10.33.0",
"exports": {
".": "./dist/index.js"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "node dist/index.js",
"dev": "ACTOR_RUNTIME_DATA_DIR=./data tsx src/index.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run test/unit test/integration",
"test:unit": "vitest run test/unit",
"test:integration": "vitest run test/integration",
"test:e2e": "vitest run test/e2e --no-file-parallelism",
"test:watch": "vitest"
},
"dependencies": {
"@crawlee/core": "4.0.0-beta.145",
"@crawlee/fs-storage": "4.0.0-beta.145",
"@novnc/novnc": "1.7.0",
"dockerode": "^4.0.5",
"express": "^5.1.0",
"json5": "^2.2.3",
"tar-stream": "^3.1.7",
"ws": "^8.21.3"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@types/dockerode": "^3.3.34",
"@types/express": "^5.0.1",
"@types/express-serve-static-core": "^5.1.3",
"@types/node": "^22.13.0",
"@types/tar-stream": "^3.1.3",
"@types/ws": "^8.18.1",
"apify-client": "^2.13.0",
"axios": "^1.7.9",
"eslint": "^9.18.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.4.2",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.18.0",
"vitest": "^2.1.8"
},
"pnpm": {
"ignoredBuiltDependencies": [
"cpu-features",
"esbuild",
"protobufjs",
"ssh2"
],
"overrides": {
"@crawlee/fs-storage-native": "0.1.5-beta.19"
}
}
}