-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
37 lines (37 loc) · 941 Bytes
/
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
{
"name": "docusaurus-prince-pdf",
"version": "1.2.2",
"description": "Extract rendered data from Docusaurus and generate PDF, the hard way",
"main": "index.js",
"bin": "index.js",
"type": "module",
"repository": "https://github.com/signcl/docusaurus-prince-pdf",
"author": "OpenBayes",
"license": "MIT",
"scripts": {
"test": "bun run index.ts -u https://docusaurus.io/docs/",
"compile": "bun build --compile --minify --sourcemap ./index.ts --outfile dpdf",
"release": "bunx release-it"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"release-it": {
"github": {
"release": true
}
},
"dependencies": {
"happy-dom": "^16.6.0",
"jsdom": "^26.0.0"
},
"packageManager": "[email protected]",
"devDependencies": {
"@types/bun": "latest",
"@types/jsdom": "^21.1.7",
"prettier": "^3.4.2"
},
"peerDependencies": {
"typescript": "^5.7.3"
}
}