-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.25 KB
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
{
"name": "printer-pdf",
"version": "5.2.9",
"description": "A simple and powerful printing library for node and elctron environments.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/LyingDoc/printer-pdf.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "esno test/index.ts",
"lint": "prettier --write \"**/*.{js,ts,mts,json,md,yml}\"",
"build": "webpack --config webpack.config.mts",
"lint-build": "npm run lint && npm run build"
},
"devDependencies": {
"@types/node": "^25.9.3",
"@types/webpack": "^5.28.5",
"@types/webpack-node-externals": "^3.0.4",
"copy-webpack-plugin": "^14.0.0",
"electron-util": "^1.0.0",
"esno": "^4.8.0",
"prettier": "3.8.4",
"terser-webpack-plugin": "^5.6.1",
"ts-loader": "^9.6.0",
"ts-node": "^10.9.2",
"typescript": "^6.0.3",
"webpack": "^5.107.2",
"webpack-cli": "^7.0.3",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"find-java-home": "^2.0.0",
"java-caller": "^4.4.2"
},
"keywords": [
"printer-pdf",
"pdf",
"printer",
"node.js",
"electron"
]
}