-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.29 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.29 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
{
"name": "markudown-engine",
"version": "0.1.5",
"description": "High-performance web scraping engine with BullMQ workers — Cheerio, Playwright, and Abrasio layers",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.ts",
"lint": "eslint src/",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"release": "bash scripts/release.sh"
},
"keywords": [
"scraper",
"markdown",
"bullmq",
"playwright",
"cheerio"
],
"license": "AGPL-3.0",
"dependencies": {
"@bull-board/api": "^6.18.2",
"@bull-board/express": "^6.18.2",
"abrasio-sdk": "github:Scrape-Technology/abrasio-sdk-node#v0.2.2",
"bullmq": "^5.34.0",
"cheerio": "^1.0.0",
"dotenv": "^16.4.7",
"express": "^5.2.1",
"fast-xml-parser": "^4.5.1",
"ioredis": "^5.9.3",
"patchright": "^1.57.0",
"turndown": "^7.2.0",
"undici": "^7.3.0",
"user-agents": "^1.1.373",
"winston": "^3.17.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/node": "^22.12.0",
"@types/turndown": "^5.0.5",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=20.0.0"
}
}