-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.27 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
42
43
44
45
46
47
48
49
50
{
"name": "printer-api",
"version": "0.0.6",
"description": "Print documents through a REST API",
"main": "main.js",
"repository": "github:coppertrack/printer-api",
"scripts": {
"postinstall": "electron-builder install-app-deps",
"build:local": "electron-builder --mac --windows --linux",
"release:local": "electron-builder --mac --windows --linux --publish always",
"start": "electron main.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Coppertrack BV",
"license": "ISC",
"build": {
"appId": "com.coppertrack.printerapi",
"productName": "Printer API",
"mac": {
"category": "public.app-category.business",
"extendInfo": {
"LSUIElement": 1
}
},
"dmg": {
"icon": false
},
"linux": {
"target": [
"AppImage"
],
"category": "Office"
}
},
"dependencies": {
"cors": "^2.8.5",
"electron-notification-state": "^1.0.4",
"express": "^4.17.1",
"express-fileupload": "^1.2.1",
"pdf-to-printer": "^2.0.6",
"request": "^2.88.2",
"request-promise-native": "^1.0.9",
"toad-scheduler": "^1.5.0",
"update-electron-app": "^2.0.1"
},
"devDependencies": {
"electron": "^13.3.0",
"electron-builder": "^22.11.7"
}
}