-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
54 lines (54 loc) · 1.67 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": "bits-to-dead-trees",
"author": "Robin Mehner <[email protected]>",
"version": "2.22.0",
"description": "Turn HTML into PDF files",
"repository": "github:rmehner/bits-to-dead-trees",
"license": "Apache-2.0",
"keywords": [
"html",
"pdf",
"playwright"
],
"engines": {
"node": ">= 22"
},
"main": "server.js",
"type": "module",
"scripts": {
"check-format": "prettier --check '**/*.{js,ts,cjs,mjs,json,md}'",
"lint": "eslint *.js",
"format": "prettier --write '**/*.{js,ts,cjs,mjs,json,md}'",
"start": "node server.js",
"start:dev": "nodemon --inspect server.js",
"dump-schemas": "typescript-json-schema --noExtraProps --required --strictNullChecks types/schemas.ts PdfRequestBody --out pdf_request_body.json",
"update-schemas": "npm run dump-schemas && npm run format",
"postinstall": "npx playwright-core install chromium --only-shell",
"add-changeset": "changeset",
"release": "changeset publish",
"test": "vitest --reporter verbose",
"ts-check": "npx tsc --noEmit"
},
"dependencies": {
"fastify": "^5.2.1",
"playwright-core": "^1.50.0"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.11",
"@eslint/js": "^9.17.0",
"@tsconfig/node20": "^20.1.4",
"@types/lodash": "^4.17.14",
"@types/node": "22.10.7",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-n": "^17.15.1",
"eslint-plugin-promise": "^7.2.1",
"globals": "^15.14.0",
"nodemon": "^3.1.9",
"pino-pretty": "^13.0.0",
"prettier": "^3.4.2",
"typescript-json-schema": "^0.65.1",
"vitest": "^3.0.4"
}
}