-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.61 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.61 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
{
"name": "website-screenshot-service",
"version": "1.0.0",
"description": "A microservice for capturing website screenshots with anti-bot detection, cookie popup handling, and ad blocking",
"main": "dist/index.js",
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"lint": "eslint src --ext .ts",
"format": "prettier --write \"src/**/*.ts\""
},
"keywords": [
"screenshot",
"puppeteer",
"headless-browser",
"web-scraping"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/DonRainl/website-screenshot-service.git"
},
"bugs": {
"url": "https://github.com/DonRainl/website-screenshot-service/issues"
},
"homepage": "https://github.com/DonRainl/website-screenshot-service#readme",
"dependencies": {
"@fastify/cors": "^9.0.1",
"@fastify/rate-limit": "^9.1.0",
"@fastify/static": "^7.0.4",
"axios": "^1.13.2",
"dotenv": "^16.6.1",
"fastify": "^4.28.0",
"pino": "^8.18.0",
"pino-pretty": "^10.3.1",
"puppeteer": "^22.0.0",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-adblocker": "^2.13.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"sharp": "^0.33.2",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/node": "^20.11.16",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.56.0",
"prettier": "^3.2.4",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=20.0.0"
}
}