forked from epaderevyanko/electron-printer
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.31 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": "electron-printer",
"description": "Node.js printer bindings - electron builds",
"version": "0.1.4",
"homepage": "https://github.com/drainerlight/electron-printer",
"author": {
"name": "Drainerlight"
},
"contributors": [
"Name Lastname <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/drainerlight/electron-printer.git"
},
"scripts": {
"install": "node-pre-gyp install --fallback-to-build",
"release-linux": "node-pre-gyp rebuild --target_platform=linux --runtime=electron --dist-url=https://electronjs.org/headers --target=27.1.3 && node-pre-gyp package",
"release-win": "node-pre-gyp rebuild --target_platform=win32 --runtime=electron --dist-url=https://electronjs.org/headers --target=27.1.3 && node-pre-gyp package"
},
"binary": {
"module_name": "node_printer",
"module_path": "./build/{configuration}/electron-v27.1.3-{platform}-{arch}/",
"package_name": "electron-v27.1.3-{platform}-{arch}.tar.gz",
"host": "https://github.com/drainerlight/electron-printer/releases/download/0.1.4"
},
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.10",
"nan": "^2.1.0",
"node-gyp": "^9.3.1"
},
"devDependencies": {
"nodeunit": "*"
},
"licenses": [
{
"type": "MIT"
}
],
"main": "./index"
}