-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.65 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": "@autotelic/fastify-pdf-export",
"version": "0.1.0",
"description": "Plugin for Fastify",
"main": "index.js",
"types": "types/index.d.ts",
"type": "module",
"files": [
"index.js",
"types/index.d.ts"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "npx tailwindcss -i ./example/input.css -o ./public/output.css && cp example/index.html public/index.html",
"dev": "npm run build && concurrently \"npx http-server\" \"fastify start -l debug -P example/index.js\"",
"test": "npm run build && tap",
"lint": "eslint .",
"test:types": "tsd",
"validate": "npm run lint && npm test && npm run test:types"
},
"repository": {
"type": "git",
"url": "git+https://github.com/autotelic/fastify-pdf-export.git"
},
"keywords": [],
"author": "Autotelic Development Ltd <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/autotelic/fastify-pdf-export/issues"
},
"homepage": "https://github.com/autotelic/fastify-pdf-export#readme",
"dependencies": {
"fastify-plugin": "^4.5.1",
"puppeteer": "^21.9.0"
},
"devDependencies": {
"@autotelic/eslint-config-js": "^0.3.0",
"@autotelic/fastify-injector": "^0.3.0",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"concurrently": "^8.2.2",
"eslint": "^8.56.0",
"eslint-import-resolver-typescript": "^3.6.1",
"fastify": "^4.25.2",
"fastify-cli": "^6.0.1",
"nock": "^13.5.0",
"pdf-lib": "^1.17.1",
"tailwindcss": "^3.4.1",
"tap": "^18.6.1",
"tsd": "^0.30.4",
"typescript": "^5.3.3"
},
"tsd": {
"directory": "types"
}
}