-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
58 lines (58 loc) · 1.64 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
55
56
57
58
{
"name": "hc-pdf-server",
"version": "2.2.1",
"description": "html to pdf rendering server using Headless Chrome",
"main": "dist/server.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "rm -rf ./dist && tsc",
"test": "tap --ts --no-check-coverage --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 <[email protected]> (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": {
"@uyamazak/fastify-hc-pages": "2.0.2",
"fastify": "^4.23.1",
"@fastify/bearer-auth": "^9.0.0",
"@fastify/formbody": "^7.4.0",
"fastify-plugin": "^4.5.0",
"puppeteer": "^19.8.2"
},
"devDependencies": {
"@tsconfig/node12": "^1.0.11",
"@types/node": "^20.6.0",
"@types/pdf-parse": "^1.1.1",
"@types/tap": "^15.0.8",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.49.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^5.0.0",
"fastify-cli": "^5.7.1",
"pdf-parse": "^1.1.1",
"prettier": "^3.0.3",
"tap": "^16.3.8",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}