-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 2.82 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@chieforz/pdf-generator",
"version": "1.6.0",
"repository": "git@github.com:ChiefORZ/pdf-generator.git",
"license": "MIT",
"author": "ChiefORZ <seb.schaffernak@gmail.com>",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"bin": "dist/bin/pdf-generator.js",
"scripts": {
"biome:check": "wireit",
"biome:write": "wireit",
"build": "wireit",
"dev": "wireit",
"precommit": "wireit",
"prepare": "wireit",
"release": "wireit",
"test": "wireit",
"test:knip": "wireit"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": "biome check --write"
},
"dependencies": {
"@pdf-lib/fontkit": "^1.1.1",
"debug": "^4.4.0",
"express": "^4.21.2",
"fast-glob": "^3.3.2",
"locate-chrome": "^0.1.1",
"pdf-lib": "^1.17.1",
"puppeteer-chromium-resolver": "^23.0.0",
"puppeteer-core": "^23.10.4",
"puppeteer-report": "^3.1.0",
"typescript": "^5.7.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@release-it/conventional-changelog": "^9.0.3",
"@types/conventional-changelog": "^3.1.5",
"@types/debug": "^4.1.12",
"@types/express": "^5.0.0",
"@types/node": "^20.17.10",
"@types/semver": "^7.5.8",
"@types/yargs": "^17.0.33",
"conventional-changelog": "^6.0.0",
"conventional-changelog-conventionalcommits": "^8.0.0",
"husky": "^9.1.7",
"knip": "^5.40.0",
"lint-staged": "^15.2.11",
"npm-run-all2": "^7.0.1",
"release-it": "^17.10.0",
"semver": "^7.6.3",
"tsx": "^4.19.2",
"wireit": "^0.14.9"
},
"packageManager": "pnpm@8.12.0",
"engines": {
"node": "^20"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"wireit": {
"build": {
"command": "tsc",
"files": ["src/**/*", "tsconfig.json"],
"clean": true,
"output": ["dist/**"]
},
"dev": {
"command": "node --import tsx --watch ./bin/pdf-generator",
"files": ["src/**/*", "bin/pdf-generator"],
"service": true
},
"biome:check": {
"command": "biome check ./src",
"files": ["src/**/*.{js,jsx,ts,tsx}"],
"output": []
},
"biome:write": {
"command": "biome check --write ./src"
},
"precommit": {
"command": "lint-staged",
"files": ["src/**/*"],
"output": []
},
"prepare": {
"command": "husky install"
},
"release": {
"command": "release-it",
"files": ["src/**/*", "package.json"],
"output": []
},
"test": {
"command": "npm-run-all test:*",
"files": ["src/**/*"],
"output": []
},
"test:knip": {
"command": "knip",
"files": ["src/**/*"],
"output": []
}
}
}