-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
54 lines (54 loc) · 1.17 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "site2pdf-cli",
"version": "0.1.5",
"type": "module",
"description": "Generate comprehensive PDFs of entire websites, ideal for RAG. ",
"bin": {
"site2pdf": "bin/index.js"
},
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"build": "tsc",
"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"
},
"files": [
"dist",
"bin"
],
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@biomejs/biome": "1.8.3",
"@types/jest": "^29.5.14",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.2",
"tsx": "^4.7.2",
"typescript": "^5.2.2"
},
"dependencies": {
"chrome-finder": "^1.0.7",
"p-limit": "^6.1.0",
"pdf-lib": "^1.17.1",
"puppeteer": "^22.6.5"
}
}