-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.38 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.38 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
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@ssxv/node-printer",
"version": "1.1.1",
"description": "Cross-platform N-API native printing bindings for Node.js (Windows & POSIX/CUPS). Requires Node.js >=18 and libcups >=1.6 for POSIX builds.",
"main": "lib/js/index.js",
"exports": {
".": {
"import": "./lib/js/index.js",
"require": "./lib/js/index.js",
"types": "./lib/js/types.d.ts"
}
},
"scripts": {
"install": "prebuild-install || node-gyp rebuild",
"build": "tsc && node-gyp rebuild",
"prepublishOnly": "tsc"
},
"keywords": [
"printer",
"napi",
"native",
"windows",
"printing",
"cups",
"cross-platform"
],
"author": {
"name": "Satyendra Singh",
"email": "satyendraxv@gmail.com"
},
"license": "MIT",
"engines": {
"node": ">=18"
},
"files": [
"lib/",
"src/native/",
"src/mapping/",
"binding.gyp"
],
"dependencies": {
"node-addon-api": "^5.0.0",
"prebuild-install": "^7.0.1"
},
"types": "lib/js/types.d.ts",
"gypfile": true,
"repository": {
"type": "git",
"url": "git+https://github.com/ssxv/node-printer.git"
},
"bugs": {
"url": "https://github.com/ssxv/node-printer/issues"
},
"homepage": "https://github.com/ssxv/node-printer#readme",
"devDependencies": {
"@types/node": "^18.0.0",
"node-gyp": ">=12.2.0",
"prebuild": "^13.0.1",
"typescript": "^5.0.0"
}
}