forked from laiso/site2pdf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 951 Bytes
/
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
{
"name": "site2pdf-cli",
"version": "0.1.0",
"type": "module",
"description": "Generate comprehensive PDFs of entire websites, ideal for RAG. ",
"bin": {
"site2pdf": "bin/site2pdf.js"
},
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"start": "tsx index.ts",
"dev": "tsx watch index.ts",
"publish": "npm publish",
"lint": "biome lint",
"format": "biome format"
},
"author": "laiso",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/laiso/site2pdf.git"
},
"keywords": ["crawler", "PDF"],
"homepage": "https://github.com/laiso/site2pdf#readme",
"bugs": {
"url": "https://github.com/laiso/site2pdf/issues"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"ts-jest": "^29.2.2",
"tsx": "^4.7.2"
},
"dependencies": {
"p-limit": "^6.1.0",
"pdf-lib": "^1.17.1",
"puppeteer": "^22.6.5"
}
}