forked from uyamazak/hc-pdf-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.69 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.69 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
60
{
"name": "hc-pdf-server",
"version": "3.0.0",
"description": "html to pdf rendering server using Headless Chrome",
"main": "dist/server.js",
"packageManager": "pnpm@10.28.0",
"directories": {
"test": "test"
},
"scripts": {
"build": "rm -rf ./dist && tsc",
"test": "tap --timeout=180 test/**/*.test.ts",
"start": "node dist/src/server.js",
"dev": "ts-node ./src/server.ts",
"lint": "eslint --fix ./ --ext ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/uyamazak/hc-pdf-server.git"
},
"keywords": [
"fastify",
"pdf",
"headless chrome",
"puppeteer"
],
"author": "uyamazak <yu.yamazaki85@gmail.com> (https://github.com/uyamazak/)",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/uyamazak/hc-pdf-server/issues"
},
"homepage": "https://github.com/uyamazak/hc-pdf-server#readme",
"dependencies": {
"@fastify/bearer-auth": "^10.1.2",
"@fastify/formbody": "^7.4.0",
"@uyamazak/fastify-hc-pages": "2.0.2",
"fastify": "^4.29.1",
"fastify-plugin": "^4.5.1",
"proxy-chain": "^2.7.1",
"puppeteer": "^24.39.0"
},
"devDependencies": {
"@tsconfig/node12": "^12.1.7",
"@types/node": "^25.4.0",
"@types/pdf-parse": "^1.1.5",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"@typescript-eslint/parser": "^8.57.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.5",
"fastify-cli": "^7.4.1",
"light-my-request": "^6.6.0",
"pdf-parse": "^2.4.5",
"prettier": "^3.8.1",
"tap": "^21.6.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}