-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 993 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 993 Bytes
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
{
"name": "factorio-scraper",
"version": "0.0.1",
"type": "module",
"description": "This is an example of an Apify Actor.",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@crawlee/cheerio": "^3.15.3",
"apify": "^3.5.2",
"crawlee": "^3.16.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@apify/eslint-config": "^1.0.0",
"@apify/tsconfig": "^0.1.1",
"@types/node": "^22.15.32",
"eslint": "^9.29.0",
"eslint-config-prettier": "^10.1.5",
"globals": "^17.0.0",
"prettier": "^3.5.3",
"tsx": "^4.20.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.34.1"
},
"scripts": {
"start": "npm run start:dev",
"start:prod": "node dist/main.js",
"start:dev": "tsx src/main.ts",
"build": "tsc",
"lint": "eslint",
"lint:fix": "eslint --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "echo \"Error: oops, the Actor has no tests yet, sad!\" && exit 1"
},
"author": "It's not you it's me",
"license": "ISC"
}