forked from fttx/barcode-to-pc-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.48 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "barcode-to-pc-server",
"description": "Barcode to PC server",
"keywords": [
"barcode",
"app",
"remote"
],
"version": "3.0.1",
"license": "MIT",
"author": {
"name": "Filippo Tortomasi",
"email": "[email protected]",
"url": "https://github.com/fttx"
},
"repository": {
"type": "git",
"url": "https://github.com/fttx/barcode-to-pc-server.git"
},
"main": "electron/src/main.js",
"scripts": {
"postinstall": "electron-builder install-app-deps",
"start": "npx gulp --cwd ./ionic/ serve",
"test": "npx gulp --cwd ./ionic/ test",
"dist": "npx gulp --cwd ./ionic/ dist",
"publish": "npx gulp --cwd ./ionic/ publish",
"publish-w": "npx gulp --cwd ./ionic/ publish-w",
"publish-l": "npx gulp --cwd ./ionic/ publish-l",
"tsc": "tsc",
"mocha": "mocha",
"tsc:electron": "tsc -p electron/tsconfig.json",
"tsc:watch-electron": "tsc -w -p electron/tsconfig.json",
"electron:dev": "npx electron dist/electron/src/main.js --dev",
"ionic:build": "cd ionic && npx ionic cordova build browser --prod"
},
"private": true,
"build": {
"compression": "maximum",
"appId": "com.barcodetopc.server",
"productName": "Barcode to PC server",
"mac": {
"category": "public.app-category.utilities",
"extendInfo": {
"LSUIElement": 1
}
},
"win": {
"target": [
{
"target": "nsis-web",
"arch": [
"x64",
"ia32"
]
}
],
"icon": "build/icon.ico"
},
"nsisWeb": {
"oneClick": false,
"perMachine": true,
"installerSidebar": "build/MUI_WELCOMEFINISHPAGE_BITMAP.bmp",
"shortcutName": "Barcode to PC server",
"artifactName": "${name}.v${version}.${os}.setup.${ext}"
}
},
"dependencies": {
"bonjour": "^3.5.0",
"electron-store": "^2.0.0",
"electron-updater": "^4.0.6",
"install": "^0.12.1",
"mdns": "^2.4.0",
"network": "^0.4.1",
"requirejs": "^2.3.5",
"robotjs": "^0.5.1",
"rxjs": "^5.5.6",
"systemjs": "^0.21.0",
"uuid": "^3.3.2",
"ws": "^4.1.0"
},
"devDependencies": {
"@types/bonjour": "^3.5.5",
"@types/electron-store": "^1.3.0",
"@types/mdns": "0.0.32",
"@types/uuid": "^3.4.4",
"electron": "^4.0.3",
"electron-builder": "^20.38.5",
"electron-log": "^3.0.0",
"gulp": "^3.9.1",
"mocha": "^5.2.0",
"npx": "^10.2.0",
"spectron": "^3.8.0",
"typescript": "^3.1.3"
}
}