-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·82 lines (82 loc) · 1.88 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
{
"name": "noti_sender",
"productName": "NotiSender",
"version": "0.3.6",
"description": "",
"main": "./src/main.js",
"scripts": {
"start": "electron .",
"testStart": "rm -rf ./node_modules/syncprotocol && npm install file:syncprotocol_lib && electron . --inspect=8228",
"deploy": "electron-builder build",
"deployWin": "electron-builder --win --x64"
},
"keywords": [],
"author": "Choiman1559 <[email protected]>",
"license": "LGPL-2.1",
"devDependencies": {
"@web/dev-server": "^0.1.35",
"electron": "32.0.2",
"electron-builder": "^24.13.1"
},
"dependencies": {
"@getstation/electron-google-oauth2": "^2.1.0",
"@material/web": "1.0.1",
"@webcomponents/webcomponentsjs": "^2.7.0",
"battery": "^1.0.1",
"electron-dl": "^3.5.0",
"electron-store": "^8.1.0",
"firebase": "^9.14.0",
"material-design-lite": "^1.3.0",
"mdl-selectfield": "^1.0.4",
"node-machine-id": "^1.1.12",
"node-notifier": "^10.0.1",
"open": "^8.4.0",
"syncprotocol": "file:syncprotocol_lib"
},
"build": {
"productName": "NotiSender",
"appId": "com.noti.sender",
"asar": true,
"asarUnpack": [
"./src/lib/key-sender.jar"
],
"protocols": {
"name": "notiSender",
"schemes": [
"notiSender"
]
},
"win": {
"target": [
"zip",
"nsis"
],
"icon": "./src/res/icon.png"
},
"linux": {
"target": [
{
"target": "deb",
"arch": [
"x64",
"arm64"
]
}
],
"icon": "./src/res/icon.icns"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"directories": {
"buildResources": "./resources/installer/",
"output": "./out/",
"app": "."
},
"files": [
"**/*",
"!src/config${/*}"
]
}
}