-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
41 lines (41 loc) · 1.01 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
{
"name": "win32-pdf-printer",
"version": "5.0.0",
"description": "A simple and powerful printing library for node and elctron environments.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mlmdflr/win32-pdf-printer"
},
"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,json,md,yml}\"",
"build": "webpack --config webpack.config.js",
"lint-build": "npm run lint && npm run build"
},
"devDependencies": {
"@types/node": "^18.7.19",
"clean-webpack-plugin": "4.0.0",
"copy-webpack-plugin": "^11.0.0",
"esno": "^0.16.3",
"prettier": "2.8.3",
"ts-loader": "^9.4.1",
"typescript": "^4.8.3",
"webpack": "^5.74.0",
"webpack-cli": "^5.0.1"
},
"keywords": [
"pdf",
"printer",
"pdf-printer",
"node.js",
"electron",
"windows"
]
}